我希望能够在“博客”页面上使用精选图片。 这是开发站点:http://splashagency.com.au/dev/jetset/travel-blog/
如您所见,页面顶部是蓝天(带有一点云)图像。这似乎是从一个帖子特色图片中提取但我希望能够登录,转到Pages>编辑>特色图片并不时更改。就像它在所有其他页面上的工作方式一样。
但出于某种原因,我似乎无法让它发挥作用。这是我的index.php代码:
get_header(); ?>
<div id="category-pic" class="cf">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php the_post_thumbnail( 'package-categpry-pic' ); ?>
<?php endwhile; ?>
</div><!-- category-pic -->
<article id="content" class="left ">
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
get_template_part( 'loop', 'index' );
?>
</article><!-- content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
是的,我知道缩略图名称有拼写检查!!
提前致谢