Nom du crochet
seopress_titles_desc
Version requise
2.7.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); |