Duplicate meta description solution – code or wordpress plugin
Some plugins provide a search engine optimized page description, but many wordpress themes already have a default one.
This plugin or code snippet solves this problem by deleting the FIRST meta description from the header code.
<?php function twd_remove_first_meta_description($html) {
$pattern = '/<meta name(.*)=(.*)”description”(.*)>/i';
$html = preg_replace($pattern, ”, $html,1);
return $html;
}
function twd_clean_meta_description($html) {
ob_start('twd_remove_first_meta_description');
}
add_filter('get_header', 'twd_clean_meta_description', 1);
?>