我在page.php:
下的常规WordPress页面上有ff:代码<section id="content-wrapper">
<div class="sqs-cart-dropzone"></div>
<div class="content">
<div class="content-inner" data-content-field="main-content">
<div class="sqs-layout sqs-grid-12 columns-12" data-type="page" data-updated-on="1456865486035" id="page-54821cc9e4b0ab9977bd33f7">
<?php the_title( sprintf( '<h1><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
<?php the_content(); ?>
</div>
</section>
由于某种原因,这不会提取页面的内容。它只显示页面的标题,但根本没有内容。
我错过了什么?
我应该在page.php上放置什么才能让它全部解决?
答案 0 :(得分:3)
您缺少的是标准的WordPress循环
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<?php the_title( sprintf( '<h1><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>