这个问题有很多变数,所以请耐心听我说,我给你一个解决方案,可以让你接近。
假设该字段名为myimage,并且您正在字段控件中返回图像url。。。
打开你的家。php文件(如果没有子主题,请创建一个,并从主主题复制home.php。然后在子主题的home.php中输入以下代码:
<?php if( get_field(\'myfield\') ): ?>
<img src="<?php the_field(\'myfield\'); ?>" />
<?php endif; ?>
您希望它出现在主页上的任何位置。
如果你想让英雄出现在标题中,你可能需要使用标题。并使用此代码。
<?php
if ( is_home() ) {
// This is the blog posts index
if( get_field(\'myfield\') ): ?>
<img src="<?php the_field(\'myfield\'); ?>" />
<?php endif;
} else {
// This is not the blog posts index
}
?>