Skip to content

Instantly share code, notes, and snippets.

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