如果您直接在编辑器中添加图像,那么\\u content()将始终回显图像。这意味着标题只能位于博客帖子的上方或下方。您应该尝试将图像添加为特色图像。查看此链接,了解如何添加特色图像支持以及如何使用->http://codex.wordpress.org/Post_Thumbnails
基本上,您需要将下面的代码添加到函数中。php文件。这将打开“特色图像”选项。
add_theme_support(\'post-thumbnails\');
更新循环以包含特色图像。
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="post_title">
<div id="nav-above" class="navigation">
</div><!-- #nav-above -->
<div class="entry-meta">
</div><!-- .entry-meta -->
</div>
<table id="post-<?php the_ID(); ?>" <?php post_class(); ?>
<div class="entry-content-left">
<div class="entry-content-right">
<?php
//possible image sizes: thumbnail,medium,large,full
the_post_thumbnail(\'full\');
<h3 class="entry-title"><?php the_title(); ?></h3>
<h2 class="the_subtitle"><?php the_subtitle(); ?></h2>
the_content();
?>
转到您的博客文章编辑页面,查看右下角的“设置特色图像”框。添加您的图像。