WordPress 网站怎么显示文章作者最近发表过评论的文章?WordPress 网站显示文章作者最近发表过评论的文章的方法如下。
1、将代码加到侧边栏sidebar.php模板中,当打开文章作者所有文章归档页面,会显示10篇该作者最近发表过评论的文章。
- <?php if ( is_author() ) { ?><?php$author_email = get_the_author_meta( 'user_email' );$args = array( 'author_email' => $author_email, 'number' => '10');$comments = get_comments($args);foreach($comments as $comment) : echo('<li class="comment">' . $somment->comment_content),'<h5><a href='.get_permalink($comment->comment_post_ID).'>', get_the_title($comment->comment_post_ID), '</a></h5>', '<time><em>' . $comment->get_comment_date . '</em></time>', '</li>';endforeach;?><?php } ?>
2、当然如果想让上述代码能适配主题样式结构,还需要加上适当的DIV,比如适配WordPress默认主题Twenty Sixteen,代码应该是这样:
- <?php if ( is_author() ) { ?><aside id="secondary" class="sidebar widget-area" role="complementary"><section id="user-p" class="widget widget_categories"> <h2 class="widget-title">评论过的文章</h2> <ul class="user-p-widget"> <?php $author_email = get_the_author_meta( 'user_email' ); $args = array( 'author_email' => $author_email, 'number' => '10' ); $comments = get_comments($args); foreach($comments as $comment) : echo('<li class="comment">' . $somment->comment_content),'<a href='.get_permalink($comment->comment_post_ID).'>', get_the_title($comment->comment_post_ID), '</a>', '<time><em>' . $comment->get_comment_date . '</em></time>', '</li>'; endforeach; ?> </ul></section></aside><?php } ?>
3、其它主题需要查看主题侧边栏小工具结构,修改其中的结构代码。
1、阿里云产品最新优惠领取地址:立即前往。
2、阿里云服务器优惠券领取地址优惠购买地址:点击前往。
3、阿里云最新优惠活动地址汇总,共16个,地址:点击前往。
4、同配置云产品腾讯云相对便宜,先点此一键领取2860元无门槛满减券(老用户换QQ登陆,同一实名享新人特价),再点此进入腾讯云活动页面。12年老码农建议:服务器升级、复购、续费贵,数据迁移也麻烦,建议用好新人优惠资格,买多年,配置一次性到位,后期省事又省钱。