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?

http://wordpress.org/plugins/anythingslider-for-wordpress/

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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -