wordpress多作者显示问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wordpress多作者显示问题相关的知识,希望对你有一定的参考价值。
如何按照字母列表显示网站所有作者;
如何在文章页面右侧显示作者信息及该作者其他文章;
如何在文章页面开头显示作者名字。
本人wordpress站点名字为“医普网”(百度即可),参考wordpress站点“科学松鼠会”作者列表及文章显示页面。
在文章左侧实现作者写一个div框,调用作者、头像、代码即可。
实现该作者其他文章也是一样,代码调用。(ps:可以直接谷歌,代码有很多)追问
谢谢回复,请注意我的问题。
如何按照字母列表显示网站所有作者;
如何在文章页面右侧显示作者信息及该作者其他文章;
如何在文章页面开头显示作者名字(是只显示名字)。
请按照我的提问顺序回答,谢谢~本人菜鸟,请在说清楚些。
参考技术A 可以安装插件:WordPress author plugin widget
Author Avatars List
后者功能更强大,除了可以显示头像还可以显示该作者近期发表的文章。
wordpress 多循环问题
【中文标题】wordpress 多循环问题【英文标题】:wordpress multiple loops problem 【发布时间】:2009-10-01 17:00:01 【问题描述】:我正在尝试建立一个 single.php 页面。此页面用于显示完整的单个帖子。
我有 3 个循环。前两个用于(每个)从特定类别中获取随机帖子。
1
<?php query_posts(array('orderby' => 'rand', 'category_name' => announcement, 'showposts' => 1)); if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
2
<?php query_posts(array('orderby' => 'rand', 'category_name' => quote, 'showposts' => 1)); if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
问题在于应该显示真实帖子本身的第三个循环。
3
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else: ?>
<?php endif; ?>
^^ 这显示与 #2 相同的帖子。
所以,#1 和 #2 工作得很好,但是如何让 #3 显示它应该显示的单个帖子 - 例如,来自链接 http://example.com/one-post/ 标题为 one-post 的帖子应该被显示。
#1 和#2 位于页面的“顶部”区域,而#3 应位于页面中间。
【问题讨论】:
【参考方案1】:固定。
修复它。将 #1 和 #2 更改为
<?php
$randomAnnouncement = new WP_Query();
$randomAnnouncement->query('cat=545&showposts=1&orderby=rand');
while ($randomAnnouncement->have_posts()) : $randomAnnouncement->the_post();
?>
<?php the_content(); ?>
<?php endwhile; ?>
和
<?php
$randomQuote = new WP_Query();
$randomQuote->query('cat=546&showposts=1&orderby=rand');
while ($randomQuote->have_posts()) : $randomQuote->the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
#3 保持原样。
希望这对其他人有帮助。
【讨论】:
以上是关于wordpress多作者显示问题的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress:如何通过自定义分类法在作者页面中显示帖子计数