我想在标题中使用两个图像。在主页和单一。php是我在面板中上传的图像(名为logo.png)。对于我想要的页面,请使用图像“logopage”。png“(目录:/images/logopage.png)。
只是我在主页中使用的图像起作用了。页面中没有显示任何内容。
我该怎么做?
附言:我尝试使用的代码:
作用php:
add_theme_support( \'custom-header\', array(
\'default-image\' => get_template_directory_uri() . \'/images/logo.png\',
\'random-default\' => false,
\'width\' => 1050,
\'height\' => 100,
\'flex-height\' => true,
\'flex-width\' => true,
\'default-text-color\' => \'\',
\'header-text\' => false,
\'uploads\' => true,
\'wp-head-callback\' => \'\',
\'admin-head-callback\' => \'\',
\'admin-preview-callback\' => \'\',
));
在标题中。php:
<?php
if ( is_home() ) echo theme_heading();
if ( is_single() ) echo theme_heading();
elseif ( is_page() ) get_template_directory_uri() . \'/images/logopage.png\';
?>
对不起,我的英语:X