我对WordPress做了一些修改,但我还不是专家,所以如果这是一个重复的问题,请提前道歉。
我已经基于Bootstrap构建了一个简单的WordPress主题,我可以使用the_content()
, 使用填充侧栏时get_sidebar()
.
我的问题是,是否可以标记一篇文章的特定部分,并让该部分的处理方式与其他部分不同the_content()
. 下面是一个示例:
下面是一些伪代码:
<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="row">
<div class="col-md-12">
<!--tag one image within the post, to appear across all 12 columns-->
</div>
</div>
<h1><?php the_title(); ?></h1>
<div class="row">
<div class="col-md-8">
<!--the rest of the post, minus the tagged image, goes here-->
<?php the_content(); ?>
</div>
<div class="col-md-4">
<?php get_sidebar(); ?>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e(\'Sorry, no posts matched your criteria.\'); ?></p>
<?php endif; ?>
<?php get_footer(); ?>
在这种情况下,我想标记(或以其他方式识别)帖子中的一幅图像,并将其显示在col-md-12分区中,而帖子的其余部分则显示在col-md-8分区中。
我读过the_excerpt()
但我认为这在这里行不通。