需要帮忙。
我想将 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 );
?>