I am wanting to insert some code after each post in WordPress... I know you can do it after this for example, in single.php
<?php the_content(); ?>
However if I do that it puts it in the wrong place.. an example post is here: http://www.hardwareblog.com/348/computer-hardware/top-10-gadget-gift-ideas-to-avoid-this-christmas/ -- if I put it AFTER the code example above it will be placed AFTER the sociable & facebook links..... I want to put it BEFORE those, so it's RIGHT AFTER the post.
I did some checking & testing.. this code here from post-template.php
function the_content($more_link_text = null, $stripteaser = 0) {
$content = get_the_content($more_link_text, $stripteaser);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
}
It seems the facebook & sociable code is inserted into the output within the apply_filters() function.... though I can't work out where.
Any help on what I am trying to do?
Here is an example of a filter on the content and the function:
--> it is better to post all WordPress questions in http://wordpress.stackexchange.com !!!
--> if you use e.g.
it will not remove a closing paragraph tag (note the linebreak at the beginning of the string)