Code: 
function add_post_content($content) { 	if(!is_feed() && !is_home()) { 		$content .= '<p>This article is copyright &copy; '.date('Y').'&nbsp;'.bloginfo('name').'</p>'; 	} 	return $content; } add_filter('the_content', 'add_post_content');
saw this code in the internet and it works but when i click on what ever categories in my site. the $content shows even without clicking the post.
xiona_marie Reviewed by xiona_marie on . help insert content on every post in wordpress function add_post_content($content) { if(!is_feed() && !is_home()) { $content .= '<p>This article is copyright &copy; '.date('Y').'&nbsp;'.bloginfo('name').'</p>'; } return $content; } add_filter('the_content', 'add_post_content'); saw this code in the internet and it works but when i click on what ever categories in my site. the $content shows even without clicking the post. Rating: 5