Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Created February 28, 2019 18:39
Show Gist options
  • Save wp-seopress/551056bb00d9849bfef544d9e90d468f to your computer and use it in GitHub Desktop.
Save wp-seopress/551056bb00d9849bfef544d9e90d468f to your computer and use it in GitHub Desktop.
Filter Dublin Core title
function sp_dublin_core_title($html) {
//you can add here all your conditions as if is_page(), is_category() etc..
$html = '<meta name="dc.title" content="my awesome title" />';
return $html;
}
add_filter('seopress_dublin_core_title', 'sp_dublin_core_title');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment