I don’t use shortcode but I try to insert PhP code.
Here is the PhP I have to insert :
<?php if ( function_exists( ‘easingslider’ ) ) { easingslider( 198 ); } ?>
The problem is that I don’t know how to add this code in the html code. So, I tried to use custom css to add this php :
#about p:after{
content : “<?php if ( function_exists( ‘easingslider’ ) ) { easingslider( 198 ); } ?>”;
}
But this command just displayed the text between the”” . If I remove the “”, nothing happen..
What else can I do ?
Thank you