Advertisement
Guest User

WPSEO / The Events Calendar title

a guest
Dec 8th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. add_filter('wpseo_title','my_custom_titles');
  2. function my_custom_titles($title) {
  3.   if( tribe_is_event() ){
  4.     $title = 'Winter is coming';
  5.   }
  6.   return $title;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement