wordpress文章页两侧添加分页导航箭头 只是通过Js在文章页面添加了两个分页的箭头导航,没有添加title属性,不能提示下一篇上一篇的题目,这样不方便读者了解是否他需要的信息,更不利于SEO,我们可以通过下面的方法来实现!
在你的文章页面添加以下代码,替换掉?PHP prevIoUs_post_link()和PHP next_post_link()函数。
$prev_post = get_prevIoUs_post();
if (!empty( $prev_post )): ?>
PHP echo $prev_post->post_title; ?>" href="PHP echo get_permalink( $prev_post->ID ); ?>" rel="external nofollow" >PHP echo $prev_post->post_title; ?>
PHP endif; ?>
$next_post = get_next_post();
if (!empty( $next_post )): ?>
PHP echo $next_post->post_title; ?>" href="PHP echo get_permalink( $next_post->ID ); ?>" rel="external nofollow" >PHP echo $next_post->post_title; ?>
PHP endif; ?>
原文链接:https://www.f2er.com/wordpress/422795.html