WP主题创世纪孩子-在首页上显示特色图片?

时间:2020-06-15 04:47:03

标签: php wordpress genesis

希望那里的一位熟悉Genesis挂钩的人为我提供快速解决方案。我对PHP不太熟悉

在子主题的功能文件中,我有这个:

/** Add the featured image section */
add_action( 'genesis_after_header', 'full_featured_image' );
function full_featured_image() {
if ( is_front_page() ) {
echo '<div id="full-image"><img src="'. get_stylesheet_directory_uri() . '/images/home-header.jpg" /></div>';
}
}

我只想将首页图像从静态图像(images / home-header.jpg)更改为首页的精选图像。我应该在这里改变什么?

谢谢。

Kitka

0 个答案:

没有答案
相关问题