Add to Custom Theme Template in WP_Query Loop
-
Is it possible to add the share buttons to a custom theme template inside a WP_Query loop? I’m trying to use it on a blog page that utilized
the_content
looping through each entry. I want to have separate share buttons for each entry in this loop.Searching on this I found a possible solution, but it doesn’t work.
<?php do_action( 'addthis_widget', get_permalink(), get_the_title(), 'small_toolbox' ); ?>
I also tried using
<php echo do_shortcode('[addthis tool="addthis_inline_share_toolbox_qab6"]'); ?>
But that just repeats the share buttons and they share the blog page itself (instead of each individual post).Any other options? Thanks for your help.
- The topic ‘Add to Custom Theme Template in WP_Query Loop’ is closed to new replies.