显示WordPress页面的全部内容

时间:2019-06-08 21:49:37

标签: php html css wordpress

这里是LINK,我正在研究。 About Us部分没有显示全部内容,没有显示更多按钮转到下一页,而我想显示About Us页面的全部内容,而不是简短的摘要。

我做了很多检查,但在主题中找不到任何解决方法

更新:
我在(page-template / custom-home-page.php)中找到了这个

<?php  while ( $query->have_posts() ) : $query->the_post(); ?>
        <div class="row">
          <div class="col-lg-8 col-md-7">
            <h3><?php the_title(); ?></h3>
            <hr>
            <p><?php the_excerpt(); ?></p>
            <div class="more-btn">
              <a href="<?php the_permalink(); ?>"><?php esc_html_e('MORE','vw-one-page'); ?></a>
            </div>
          </div>
          <div class="col-lg-4 col-md-5">
            <img src="<?php the_post_thumbnail_url('full'); ?>"/>
          </div> 
        </div>
      <?php $i++; endwhile; 
      wp_reset_postdata();?>
    <?php else : ?>
        <div class="no-postfound"></div>
    <?php endif;
    endif;?>
  </div>  
</section>

最诚挚的问候

1 个答案:

答案 0 :(得分:2)

您主题内的代码很有可能出现。 尝试在主题文件“ / wp-content / themes / your_theme_name”中进行搜索,如下所示:

<div class="col-lg-8 col-md-7">
<h3>About Us</h3> <!-- Or <?php the_title(); ?> -->
<hr>
<?php the_exerpt(); ?>
    <div class="more-btn">
      <a href="<https://yoursite/tempp/index.php/about-us/>">MORE</a> <!-- Or something like <?php the_permalink( ... ) ?> -->
    </div>
</div>

这是一个例子。毕竟,我不知道该如何在您的主题中完成。

然后将<?php the_exerpt(); ?>更改为<?php the_content(); ?>。并删除或隐藏:

<div class="more-btn">
    ...
</div>

但是,如果这不是您的个人WordPress主题,那么最好通过Child Theme