Photocrati theme replace “Blog” title with “News” from the post single pages
add_filter( ‘reactr_title’, ‘replace_blog_with_news’, 10, 1 ); function replace_blog_with_news( $title ) { if ( is_singular( ‘post’ ) ) { $title = str_replace( ‘Blog’, ‘News’, $title ); } return $title; }Continue reading