我怎么才能把图像放在第一位而不是标题?

时间:2013-02-22 作者:Andrew28

我正在编辑我的帖子,当我创建帖子时,它会出现:

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>
---------------结束----------------------------

我有什么办法可以做到吗?谢谢

1 个回复
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(); ?>

结束

相关推荐

为什么Roots主题的css文件没有加载(404)?

我已经使用Git设置了新的shiny 3.5.1 WordPress,如下所示:http://clintberry.com/2011/speed-up-your-wordpress-development-cycle-with-git/(在步骤2之后停止;我还没有创建子主题)。我希望根主题能够自行发挥作用)我基本上拥有的与作者的Git项目相同:https://github.com/clintberry/WordPress我最后在头部部分添加了如下标签:<link rel=\"stylesheet\"