• Hi Tom, is it possible to only show the share buttons on specific categories? I’ve seen some code that you’ve provided for excluding specific posts and page but I’m not sure how to set it up for specific categories only.

    Thanks for any help you can provide, much appreciated!

    http://wordpress.org/plugins/wpsocialite/

Viewing 1 replies (of 1 total)
  • Plugin Author Tom Morton

    (@tm3909)

    Gene,

    You will want to do something like this:

    <?php
    
    if(is_category('your_category')){
    // This will display if you are on the category page
    wpsocialite_markup( );
    }
    
    if(in_category('your_category')){
    // This will display if the post is inside of your requested category
    wpsocialite_markup( );
    }

    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Display only on a specific category’ is closed to new replies.