我想从这个区域提取数据“见下图中的红色区域”
输出到特定模板
我有一个名为page的页面模板。php
<div class="contentholder">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', \'page\' ); ?>
<?php comments_template( \'\', false ); ?>
<?php endwhile; // end of the loop. ?>
<br />
</div>
但这只是给我一个评论栏。。我需要页面中的文本
我需要标题
最合适的回答,由SO网友:Tom J Nowell 整理而成
在查询循环中,此函数将输出当前帖子标题:
the_title();
此函数将输出内容:
the_content();
然而,我怀疑发生的事情是你打电话
get_template_part( \'content\', \'page\' );
当它实际做的是检查是否有
content-page.php
, 如果有,就包括在内,如果没有,就检查
content.php
因为两者都不存在,所以它什么都不做,所以你得不到任何内容。
有关什么的更多详细信息get_template_part
事实上,看看这里:
http://codex.wordpress.org/Function_Reference/get_template_part
EDIT*工作片段:
<?php while ( have_posts() ) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; // end of the loop. ?>