php - shortcode not comging through on wordpress template -
so i'm using awesome plugin "anything slider" , have integrated template. however, it's bringing in slides instead of category. shortcode i'm using... brings in slides...
<?php echo do_shortcode( "[anything_slides cat="ur"]" ); ?>
the shortcode bring in category works within wysiqyg editor this:
[anything_slides cat="ur"]
can possibly help?
i think "double-quote" have escaped:
<?php echo do_shortcode( "[anything_slides cat=\"ur\"]" ); ?>
or
<?php echo do_shortcode( '[anything_slides cat="ur"]' ); ?>
hope helps!
Comments
Post a Comment