Hi,
How do I implement this to my theme manually? What is the PHP code to insert? I want the ratings to appear in a certain place within the loop other than the default position which is after the post.
Sorry I’m not good at PHP. I just want the easy answer. Thanks 🙂
Found this…
function rm_generator_filter() { return ''; }
if (function_exists('add_filter')) {
$types = array('html', 'xhtml', 'atom', 'rss2', /*'rdf',*/ 'comment', 'export');
foreach ($types as $type)
add_filter('get_the_generator_'.$type, 'rm_generator_filter');
}
More @ http://www.christianschenk.org/blog/removing-wordpress-generator-meta-tag-completely/comment-page-1/#comment-4917