我正在编辑我的帖子,当我创建帖子时,它会出现:
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>
---------------结束----------------------------我有什么办法可以做到吗?谢谢