参数必须是数组或实现 Countable 的对象

saa*_*gar 0 php wordpress

我在本地服务器上遇到了这个问题。问题不是因为jetpack插件,因为我已经删除了

C:\xampp\htdocs\theme\wp-includes\post-template.php on line 284

Warning: count(): Parameter must be an array or an object that implements Countable in post-template.php on line 284

请任何人帮助我解决这个问题。

小智 8

如果没有,您是否将 the_content() 放入循环中

在这里试试这个:

if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
        <article class="post">
        <h3><?php the_title(); ?></h3>
        <p><?php the_content(); ?></p> 
    </article>
    <?php 
} // end while
} // end if
?>
Run Code Online (Sandbox Code Playgroud)