the_content()或has_post都没有在我的网站

时间:2018-02-28 19:21:22

标签: php wordpress file-get-contents

这是指向我的页面的链接:
http://list.thorsteinnhelgason.is/index.php/blog/

这是我的代码:

<div class="container">

    <div id="content">

         <?php 
        while ( have_posts() )
        {
            the_post();
    ?>
    <h2><?php the_title(); ?></h2>
    <?php the_content(); ?>
    <?php
        }
    ?>

        </div>

这是我的Single.php文件中的循环,该文件未在我的帖子网站上显示任何帖子内容。我是否需要在其他模板(functions.php例如)中调用该操作以获取我的帖子内容?或者它可能是什么原因导致它不起作用?希望你能帮助我...

1 个答案:

答案 0 :(得分:0)

创建&#39; if&#39;用于检查是否存在帖子的声明(在您的&#39; while&#39;之前)。然后记得关闭/结束你的同时&#39;和&#39;如果&#39;环路。

class MyClass : public QObject
{ 
    public:
    MyClass(QObject* parent = nullptr)
    {
        m_member.reset(new QObject(this));
    }
    ~MyClass(){} override;
    private: 
    QScopedPointer< QObject> m_member;
};