需要帮忙。
我想相对=“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 );
?>