Guest User

Untitled

a guest
Apr 25th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function change_title_based_on_category( $title, $post_id = null ) {
  2.  
  3. if ( in_category('some_category', $post_id ) ) {
  4. return 'My changed title';
  5. }
  6.  
  7. return $title;
  8. }
  9. add_filter( 'the_title', 'change_title_based_on_category', 10, 2 );
Add Comment
Please, Sign In to add comment