我正在编辑我的帖子,当我创建帖子时,它会出现:
TITLE
IMG
CONTENT
我想要这样:
IMG
TITLE
CONTENT
------------------明白了---------------------------
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php $pclass = ($wp_query->current_post === 1) ? \'middle-post-class\' : \'first-last-class\' ; ?>
<div id="post-style" <?php post_class($pclass); ?> >
<h1 class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
</div>
---------------结束----------------------------
我有什么办法可以做到吗?谢谢
SO网友:Chip Bennett
您不能使用post内容在调用之外添加图像the_content()
。
如果你想调查implementing Post Thumbnails (i.e. Featured Images) into your Theme.
全面实施超出了简单问答的范围;但是,最终,您的标记将改变:
<h1 class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
。。。对这样的事情:
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?>
<h1 class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>