无法回显wp_count_posts('page')?

时间:2010-01-26 20:25:01

标签: wordpress

我试图在下面的代码中回显变量的值。我收到了错误(见下文)......

这是代码......

$mypagecount = wp_count_posts('page');
echo $mypagecount;

这是错误:

Catchable fatal error: Object of class stdClass could not be converted to string

1 个答案:

答案 0 :(得分:4)

wp_count_posts函数返回一个对象 您可以要求对象返回发布项的数量。

<?php
     $count_pages = wp_count_posts('page');
     $pages = $count_pages->publish;
     echo $pages;
?>

了解更多信息:
http://wpengineer.com/show-amount-of-posts-pages-categories-tags-comments-for-wordpress-themes/