Dodajemy poniższy kod w pliku functions.php (znajduje się w naszym motywie)
Uwaga: działa tylko dla Yoast SEO
if ( ! function_exists( 'avf_add_page_number_to_title' ) )
{
function avf_add_page_number_to_title( $s )
{
global $page;
$paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
! empty ( $page ) && 1 < $page && $paged = $page;
$paged > 1 && $s .= ' - ' . sprintf( __( 'Page %s' ), $paged );
return $s;
}
add_filter( 'wpseo_metadesc', 'avf_add_page_number_to_title', 100, 1 );
add_filter( 'wpseo_title', 'avf_add_page_number_to_title', 100, 1 );
}
?>
Dodanie numeru paginacji w meta title – WordPress