我最近使用wordpress创建了一个文章目录,dimox创建了主题,Artilcess.com创建了插件和插件。
主页上显示了注册作者和发表文章的数量。
它使用%2$s表示注册作者,使用%1$s表示主索引模板中已发布文章的数量。
我也有这么多未发表的文章,所以我的问题是,有没有办法在主页上显示未发表文章的数量(仅统计)?
更新时间:
谢谢你的回答,这对像我这样的用户很有用,我不是这方面的专家,这里是代码。
<p><?php global $numposts, $users; printf(__(\'We have <strong>%2$s</strong> registered authors and <strong>%1$s</strong> published articles till the date.\', \'article-directory\'), $numposts, $users); ?></p>
这将显示输出:
截至目前,我们有24位注册作者和43篇发表的文章。
(24和43个数字是当前统计数字)
SO网友:goldenapples
罗布的回答会告诉你电话号码。如果要将其与中的其他条目一起显示在仪表板上Right Now widget,您可以使用right_now_content_table_end
钩
此代码段应将当前草稿计数添加到仪表板:
add_action( \'right_now_content_table_end\', \'show_count_unpublished_posts\' );
function show_count_recipes() {
$count_posts = wp_count_posts();
$draft_posts = $count_posts->draft;
$num = \'<a href="edit.php?post_status=draft&post_type=post">\'.number_format_i18n( $draft_posts ).\'</a>\';
$text = \'<a href="edit.php?post_status=draft&post_type=post">\'._n( \'Draft\', \'Drafts\', $draft_posts ).\'</a>\';
echo "<tr>\\n\\t".\'<td class="first b b-drafts">\' . $num . \'</td>\';
echo \'<td class="t drafts">\' . $text . \'</td></tr>\';
}