我试图在下面的代码中回显变量的值。我收到了错误(见下文)......
这是代码......
$mypagecount = wp_count_posts('page');
echo $mypagecount;
这是错误:
Catchable fatal error: Object of class stdClass could not be converted to string
答案 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/