January 27, 2019 at 3:09 am
#59990
Alberto
Participant
I solved it so, in the file functions.php child I put this code that reverses the sequence: now it shows the motto and then the title of the blog, this is important for SEO
add_filter( 'pre_get_document_title', function( $title ) {
if ( is_home() || is_front_page() ) {
$title = get_bloginfo( 'description' ) .' | '.get_bloginfo( 'name' );
}
return $title;
}
);