
WPSEO / The Events Calendar title
By: a guest on
Dec 8th, 2012 | syntax:
PHP | size: 0.17 KB | hits: 35 | expires: Never
add_filter('wpseo_title','my_custom_titles');
function my_custom_titles($title) {
if( tribe_is_event() ){
$title = 'Winter is coming';
}
return $title;
}