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

private_title_format

protected_title_format

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

Popular posts from this blog

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -