警告: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();
 ?>

非常感谢


#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();

    }
}

来源:

https://www.srcmini02.com/64048.html

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_37519.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?