不同的页眉图像‘主页’和页面

时间:2014-08-28 作者:user52466

我想在标题中使用两个图像。在主页和单一。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

1 个回复
SO网友:user52466

我明白了!

<?php if (  (is_home()) || (is_single())  ) { ?>
<?php echo theme_heading(); ?>
<?php } elseif (is_page()) { ?>
<img src="<?php echo get_stylesheet_directory_uri() ?>/images/logopage.png" />
<?php } ?>
谢谢大家!

结束

相关推荐

ADD_THEME_SUPPORT(‘CUSTOM-HEADER’)不在仪表板中添加选项菜单

我正在根据工具箱主题从头开始写一个新主题。我的WP安装是开箱即用的。我添加了add\\u theme\\u支持(“custom-header”);我的职能。php文件,但“标题”选项屏幕不会显示在仪表板中。如果我访问该站点,我可以在顶部的工具栏中看到它,但不能在仪表板中看到它。我错过什么了吗?