Calling Facebook Like button before post
-
On my blog, I’ve edited my theme to call the author image plugin via
<?php the_author_image(); ?>
just beforethe_content
is called.I want a Facebook Like button to appear beneath the blog post’s title but above the image. So far, I can’t get that to work. Instead, if I set my preferences to put the button at the top of the post, I’ll get the author image, the like button, and then the post content, resulting in an inelegant layout.
Is there a way to manually call the Like button, so I can do so just before the author image? The closest I’ve been able to come is by changing line 148 of the Like plugin so that
add_filter('the_content', 'tt_like_widget');
becomesadd_filter('the_title', 'tt_like_widget');
, but even that’s not exactly what I want (and has many unintended side effects!).
- The topic ‘Calling Facebook Like button before post’ is closed to new replies.