在cusotm post类型中,我有5个不同的图像,可以通过高级自定义字段定义。使用以下代码,我将#inner-header的背景定义为第一个图像:
<?php $background = wp_get_attachment_image_src( get_post_thumbnail_id( $page->ID ), 'full' ); ?>
<style>
#inner-header {
background-image: url('<?php echo $background[0]; ?>');
}
</style>
现在我想在页面中使用箭头来切换我定义的不同图像的背景。