badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Double title tag in the home page

#60055
Alberto
Participant

I solved but not completely. In the page source shows correct, but in google search it’s not good. You can see.

https://albertifoto.it

add_filter( 'pre_get_document_title', function( $title ) {

    if ( is_home() || is_front_page() ) {

        $title = get_bloginfo( 'description' ) .' - Portfolio | '. get_bloginfo( 'name' );
    }
     return $title;
}
);