How can I override the post title when a post is set to sticky? [closed]
Let’s say you wanna prepend the word “Special: ” to every stick post’s title you can place the following in your functions.php: add_filter( ‘the_title’, ‘sticky_title’ ); function sticky_title( $title ) { // Check if a post is set to sticky. if ( is_sticky() ) { // Prepend “Special: ” to post title. return ‘Special: ‘ … Read more