Help with pagination
-
Hello,
I faced a little problem. I have a CPT for reviews (not publicly queryable) and a page where I query them with pagination. I came up with this code:
add_filter( 'rank_math/frontend/canonical', function( $canonical ) {
global $wp;
if ( is_page( 'otzyvy' ) && is_paged() ) {
$canonical = home_url( trailingslashit( $wp->request ) );
}
return $canonical;
});To make canonical meta-tag to referring to paginated page, not the main one. But got an issue: the %page% dynamic tag doesn’t work (page 1 of 3 is not appeared in title nor description).
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.