I am using theme Twenty Eleven and am trying to add a vote up script in the content.php which only displays on a certain category.
Leave a Reply
You must be logged in to post a comment.
I am using theme Twenty Eleven and am trying to add a vote up script in the content.php which only displays on a certain category.
You must be logged in to post a comment.
you can do that in multiple ways ..
For example you can do a conditional in the PHP itself with a wp built in function :
or for example, if the script is a javascript you could load the script in a conditional way , so it would not load where it is not needed – it will save also some processing time (change the condition to what you want).
Or , you can also do the detection / condition in the script itself (you did not specify what script you use, Jquery, Javascript or other)