Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Created February 28, 2019 20:00
Show Gist options
  • Save wp-seopress/eec1327657edc42329e469a718584c5b to your computer and use it in GitHub Desktop.
Save wp-seopress/eec1327657edc42329e469a718584c5b to your computer and use it in GitHub Desktop.
Filter meta description
function sp_titles_desc($html) {
//you can add here all your conditions as if is_page(), is_category() etc..
$html = 'my meta description';
return $html;
}
add_filter('seopress_titles_desc', 'sp_titles_desc');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment