我有一个自定义的 WordPress 主题,我在该主题上为不同的页面显示不同的背景。
例如
<body <?php body_class(); ?>>
<?php if (is_page('about')) : ?>
<body style="background:url(background-stripe.gif); background-repeat: no-repeat;">
<?php endif; ?>
我目前正在尝试将其应用于自定义帖子类型(单个)页面,实现这一目标的最佳方法是什么?