The_Content()没有获取所有内容

时间:2017-01-05 作者:Quinton Chester

我遇到了一个奇怪的问题,Wordpress被切断了,没有从页面或帖子中获取所有内容。

示例见以下页面:

http://gripjunkies.com/about/

http://gripjunkies.com/staying-in-tune-during-the-off-season/

下面是single的代码。php

<?php get_template_part(\'parts/header\'); the_post(); ?>

<main>

  <div class="singleContainer">

    <article id="post-<?php the_ID(); ?>"
             <?php post_class(); ?>
             itemscope itemtype="http://schema.org/BlogPosting">

      <header>
        <h1 class="singleHeadline" itemprop="headline">
          <?php the_title(); ?>
        </h1>

        <div class="singleInfo">Posted by <a class="authorLink linkFade"><?php the_author();?></a> on <?php echo get_the_date( get_option(\'date_format\'));?> </div>
      </header>

      <div class="singleBody" itemprop="articleBody">
        <?php the_content(); ?>
      </div>

    </article>

  </div>


  <div class="discussion">

      <div class="centerBox">
        Have comments or questions about this article? Feel free to discuss below with other members.
      </div>

      <div class="comments">

        <?php comments_template(); ?>

      </div>

    </div>


</main>

<?php get_template_part(\'parts/footer\'); ?>
下面是page的代码。php,它也在做同样的事情。

<?php get_template_part(\'parts/header\'); the_post(); ?>

<main>


  <section class="container">

    <div class="title">
      <h1><?php the_title(); ?></h1>
    </div>

    <div class="content">
      <?php the_content(); ?>
    </div>

  </section>

</main>

<?php get_template_part(\'parts/footer\'); ?>
你知道问题是什么吗?我正在使用Scratch主题。

这不是我第一次使用我的主题,但这是我第一次遇到这个错误。我和我的朋友谈过这个主题,但我们都能确定刮擦并不是发生这种情况的原因。

有什么建议吗?

1 个回复
最合适的回答,由SO网友:Sjors Ottjes 整理而成

尝试呼叫the_post() 在调用函数(如\\u title()和\\u content()之前)的文件顶部

如果这不起作用,那么很可能是\\u内容过滤器上的某个函数导致了此问题。尝试逐个禁用已安装的插件,看看这是否解决了问题

相关推荐

get_posts custom field

这是一个愚蠢的问题,但我找不到合适的方式问谷歌。所以,如果这是一个重复的问题,很抱歉。我提供了一个带有复选框的自定义字段,用户可以检查是否希望此特定帖子进入主页。因此,在我的主页上,我呼吁所有已激活选中的帖子。我正在为自定义帖子类型CV创建自定义字段:function add_custom_post_meta_box() { add_meta_box( \'custom_post_meta_box\', // $id \'Campos Per