WordPress翻页链接添加title属性

前端之家收集整理的这篇文章主要介绍了WordPress翻页链接添加title属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

wordpress文章页两侧添加分页导航箭头 只是通过Js在文章页添加了两个分页的箭头导航,没有添加title属性,不能提示下一篇上一篇的题目,这样不方便读者了解是否他需要的信息,更不利于SEO,我们可以通过下面的方法来实现!

在你的文章页添加以下代码,替换掉?PHP prevIoUs_post_link()和PHP next_post_link()函数

PHP

 $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; ?>

PHP

 $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

猜你在找的wordpress相关文章