How can i remove meta tag:
<meta name='Admin Management Xtended WordPress plugin' content='2.2.4' />
Thank you very much.
Andrea
http://wordpress.org/extend/plugins/admin-management-xtended/
How can i remove meta tag:
<meta name='Admin Management Xtended WordPress plugin' content='2.2.4' />
Thank you very much.
Andrea
http://wordpress.org/extend/plugins/admin-management-xtended/
Adding this to your theme's functions.php should do the trick:
function ame_remove_feheader() {
remove_action('wp_head', 'ame_feheader_insert', 1);
}
add_action('init', 'ame_remove_feheader', 1);You must log in to post.