警告(count()在我的single.php中获取wordpress帖子的内容)

我曾尝试在single.php文件中获取wordpress帖子的内容, 但获得标题和缩略图, 但是当我在代码中使用the_content时, 页面上会出现警告。

警告:count():参数必须是在第284行的/home/altinaca/public_html/wp-includes/post-template.php中实现Countable的数组或对象
请帮助我获取当前帖子的内容
< ?php the_title(); echo "< br> "; the_post_thumbnail('full'); echo "< br> "; the_content(); ?>

【警告(count()在我的single.php中获取wordpress帖子的内容)】非常感谢
#1这是由循环外的插件或主题调用the_content()引起的, 其中$ pages = null。如果试图计算不可数类型, 这将导致php 7.2抛出错误。
在你的情况下, 你必须将the_content()函数放入主循环中, 如下所示:
if ( have_posts() ) { while ( have_posts() ) { the_post(); the_title(); echo "< br> "; the_post_thumbnail('full'); echo "< br> "; the_content(); } }

    推荐阅读