Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_filter( 'the_title', 'sticky_title' );
  2. function sticky_title( $title ) {
  3.  
  4. // Only posts can be sticky, so no further checks.
  5. if ( is_sticky() ) {
  6.  
  7. // Prepend "Special: " to post title.
  8. return 'Special: ' . $title;
  9. }
  10.  
  11. return $title;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement