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
Post a Comment