在WordPress頁面上,我將post圖像作爲標題中的背景圖像。下面是它是如何解決:懸停後的WordPress post image變化(ACF?)
<?php if (has_post_thumbnail($post->ID)): ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); ?>
<?php else : ?>
<?php endif; ?>
<header class="header" role="banner" itemscope itemtype="http://schema.org/WPHeader" style="background-image: url('<?php echo $image[0]; ?>')">...</div>
我現在要的是第二圖像添加到它應該可以懸停顯示後(高級自定義字段??)。我怎樣才能做到這一點?
EDIT
由於不是每個標題圖片具有用於懸停的第二圖像,我已經創建2個稱爲「正常」和「懸停」自定義字段。如果帖子有帖子圖片,那麼這是一個「靜態」標題,如果沒有帖子圖片,我會變得「正常」和「懸停」。我creted條件區分這些2種類型:
<?php if (has_post_thumbnail($post->ID)): ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); ?>
<header class="header" role="banner" itemscope itemtype="http://schema.org/WPHeader" style="background-image: url('<?php echo $image[0]; ?>')">
<?php else : ?>
<header class="header" role="banner" itemscope itemtype="http://schema.org/WPHeader" style="background-image: url('<?php the_field('normal'); ?>');">
<?php endif; ?>
我現在需要的是讓我的第二個形象,「懸停」作爲懸停......
感謝您的評論。但是,我需要將此圖像指定爲懸停?我可以在PHP中執行嗎?我的知識有一點限制。 – Irene