• name: share this
    plugin: http://wordpress.org/extend/plugins/share-this/

    i want it to only show if the people are on the actual post page. and it would be nice if possible to be able to enter [sharethis] anywhere in the post and have it showup that way but thats wishful thinking. just having i show up inside the post instead of outside when your just previewing would be fine.

    any help will be appreciated

Viewing 3 replies - 1 through 3 (of 3 total)
  • What you want to do is wrap the sharethis calls inside an is_single if.

    <?php if (is_single()) { ?>
    Sharethis stuff
    <?php } ?>

    put whatever the sharethis tag is inside there.

    edit: oh and stop making the same post over and over again. People won’t help you if you spam.

    Thread Starter nihilfidei

    (@nihilfidei)

    oh sorry i didn’t notice my last one existed i went back 20 pages i must of missed it. thanks again mark

    <?php if (is_single()) { ?>
    Sharethis stuff
    <?php } ?>

    Can anyone tell me where to put this?? Please…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘having sharethis show only within a post’ is closed to new replies.