我们正在寻找一种方式,以显示一个不同的标志,为一个自定义的职位类型比我们的网站的其余部分?自定义帖子类型使用自定义帖子类型UI…创建,主题为ACF和Divi。
我们尝试了以下方法:
if ( is_singular(\'customer\') ) { ?>
<img src="<?php bloginfo(\'template_directory\'); ?>/dist/images/logo-customer.png" alt="Logo Customer">
<?php } else { ?>
<img src="<?php bloginfo(\'template_directory\'); ?>/dist/images/logo.png" alt="Logo">
}
将此添加到函数时。php我们收到一个错误“语法错误,意外的文件结尾”
不确定我们在这里做错了什么,但我们似乎无法使此代码正常工作
最合适的回答,由SO网友:Lewis Donovan 整理而成
你错过了<?php
标记在右括号之前,因此它不会被处理。您的代码更新如下:
<?php if ( is_singular(\'customer\') ) { ?>
<img src="<?php bloginfo(\'template_directory\'); ?>/dist/images/logo-customer.png" alt="Logo Customer">
<?php } else { ?>
<img src="<?php bloginfo(\'template_directory\'); ?>/dist/images/logo.png" alt="Logo">
<?php } ?>