需要帮助。
我想将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 );
?>
答案 0 :(得分:1)
Wordpress不会公开任何过滤器,用于修改或添加由<a>
生成的paginate_links
标记的HTML属性。幸运的是,函数返回的链接相当简单和标准,因此字符串替换应该可以解决问题:
$links = paginate_links($args);
// $links is a string like '<a href="..">..</a> <a href="..">..</a>'
$links = str_replace('<a ', '<a rel="nofollow" ', $links);
// $links is now a string like '<a rel="nofollow" href="..">..</a> <a rel="nofollow" href="..">..</a>'