因此,要移动内容下方的标题,只需移动html即可。
<article>
<div class="entry-content">
<?php the_content(); ?>
</div> <!-- end entry-content -->
<div class="entry-header">
<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</div>
</article>
您需要稍微旋转一下html。您需要做的第一件事是添加wordpress函数
add_theme_support(\'post-thumbnails\')
您的功能。php。这将允许您向每个帖子/页面添加特色图片。
下一步的功能。php您需要添加wordpress函数add_image_size(\'postimgsize\', width, height, true)
. 最后一个周长允许图像从中心向外裁剪到指定的宽度。
最后你需要调整你的主题文件。
<article class="post">
<?php if(has_postthumbnail()) : ?>
<div class="entry-postthumbnail">
<?php the_post_thumbnail(\'postimgsize\');?>
</div>
<?php endif; ?>
<div class="entry-header">
<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</div> <!-- end entry-header -->
<div class="entry-content">
<?php the_content(); ?>
</div> <!-- end entry-content -->
</article>
the_post_thumbnail()
函数调用特征图像,通过在圆括号内指定add\\u image\\u size函数的名称,图像将裁剪为您想要的确切大小。
希望这有帮助。