Wordpress Query about posting a private blog -
i want ask simple question wordpress.my question when make post private in website appears word "private" title.can resolve this? thank you!
you can remove label in title using 2 filters
you need add code in theme functions.php file or using plugin.
function tm_private_protected_from_titles( $format ) { return '%s'; } add_filter( 'private_title_format', 'tm_private_protected_from_titles' ); add_filter( 'protected_title_format', 'tm_private_protected_from_titles' );
Comments
Post a Comment