我希望能够在“博客”页面上使用特色图片。这是开发网站:http ://splashagency.com.au/dev/jetset/travel-blog/
如您所见,页面顶部是蓝天(有一点云)图像。这似乎是从帖子特色图片中提取的,但我希望能够登录,转到页面 > 编辑 > 特色图片并不时更改它。就像它在所有其他页面上的工作方式一样。
但由于某种原因,我似乎无法让它工作。这是我的 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(); ?>
是的,我意识到缩略图名称上有拼写检查!
提前致谢