Advertisement
Guest User

Untitled

a guest
Aug 28th, 2012
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. add_filter( 'the_title', 'hide_my_title', 10 );
  2. function hide_my_title ( $title ) {
  3. if ( is_archive() ) $title = '';
  4. return $title;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement