i want to add a link to the first post of every WP blog that i have. For example this simple function adds the link to every post.
function add_link($link){
$link .= '<a href="http://site.com">Link</a>';
return $link;
}
add_filter('the_content','add_link');
so basically instead of the link showing below each post, I want it to show only at the bottom of the first post only.
thanks.