Skip to content
Public Ticket #26062

canonicalize home page pagination

Conversation thread

PenciDesign Supporter replied

Staff Reply

Hi,

Do you mean you want to remove all the pagination page numbers on the homepage?

You should insert this code either into the functions.php file of the child theme or by using the CodeSnippet plugin available here: https://wordpress.org/plugins/code-snippets/

add_action( 'pre_get_posts', function( $query ) {
    if ( is_front_page() && is_home() ) {
        $query->set( 'nopaging', true );
    }
} );

Regards,
PenciDesign.



PenciDesign Supporter replied

Staff Reply

Hi,

I mean the canonical link will auto-insert by the RankMath plugin, you don't need to manually insert it.

Regards,
PenciDesign.


laugher replied

Customer Reply

Ok. So, how can I put canonical for home page in Rank Math?

PenciDesign Supporter replied

Staff Reply

Hi,

No. The Rank Math plugin will manage this link, you don't need to put this content in the header.

Regards,
PenciDesign.


laugher replied

Customer Reply

Ok. But for home page?

I put

<rel="canonical" href="https://www.ricetteromane.it">

in the header.

Do it solve this problem about home page pagination?

Want to join this conversation or access attachments? Sign in first.