Add line breaks to titles in Wordpress -




i'm totally newbie in programming , i'm creating wordpress site. i'm trying add line break wordpress title.

i have read lot , tried lot every time insert code supposed add line break, doesn't break line , stops wordpress working. asked on reddit no 1 help.

what do add line break title?

so seems like add breakline on every title?!

if could, please, care teach me, step step, how break line wordpress title?

if so, need use filter:

<?php   function your_custom_filter($title){        //this function returns title wrapping div element around it.        //by default, should break line, unless otherwise specified in        //your css.        return '<div>' . $title . '</div>';   }    add_filter('the_title', 'your_custom_filter'); 

put somewhere in functions.php your_custom_filter gets called everytime the_title gets called. refer hooks. hope helps.





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -