我只需要在Wordpress的一页上更改标题图像。我们正在使用ushuaia模板,这是wpcasa的子主题。它只使用一个函数。php页面中的所有内容。我尝试了所有插件,但无论出于何种原因,它们都无法正常工作。因此,我尝试直接对更改进行编码,并在代码中添加了“forsale image”参数。它需要进入“待售”或“8062”页面。有没有人能说明应该如何做到这一点?下面是创建标题图像的位置:
add_filter( \'wpsight_custom_header_args\', \'ushuaia_custom_header_args\', 100 );
function ushuaia_custom_header_args( $args ) {
$args[\'height\'] = 490;
$args[\'default-text-color\'] = \'ffffff\';
$args[\'default-image\'] = get_stylesheet_directory_uri() . \'/images/header-image.png\';
$args[\'forsale-image\'] = get_stylesheet_directory_uri() . \'/images/LIV-SIR_BoR_Logo_600w.jpg\';
$args[\'wp-head-callback\'] = \'ushuaia_header_style\';
return $args;
}
// gets included in the site header
function ushuaia_header_style() {
$header_image = get_header_image();
if( empty( $header_image ) )
return;
?>
<style type="text/css">
#outer {
background: url(<?php header_image(); ?>) no-repeat 30% -220px;
}
</style>