助けが必要。
Web サイトのテーマに表示されるページネーション リンクに rel="nofollow" タグを追加したいと考えています。
この関数を使用してページネーションを使用しています。
<?php
$paged1 = isset( $_GET['paged1'] ) ? (int) $_GET['paged1'] : 1;
$pag_args1 = array(
'format' => '?paged1=%#%',
'current' => $paged1,
'total' => $query1->max_num_pages,
'prev_text' => __('« Prev'),
'next_text' => __('Next »'),
'add_args' => array( 'paged2' => $paged2 )
);
echo paginate_links( $pag_args1 );
?>