Site logo

Archived topic

Is it possible to get this text to be centered in the header?

3 replies · Started by roy on August 18, 2020

Viewing posts 1–4 of 4

would it be possible to get the part after the - to be on the bottom?

Hi there,

we can try str_replace on the post hero title with this PHP snippet:

add_filter( 'generate_page_hero_post_title', function( $title ) {
    $string = "-";
    $replace = "- <br />";
    $title = str_replace($string, $replace, get_the_title() );
	
    return $title;

} );

Hello David, please bear with me!

I'm a little confused, I am at the theme editor, is this where I put this snippet?

Which theme file do I put it under to test if it works?

Thanks again, sorry about my ignorance

This archived topic is closed to new replies.