我注意到,使用post_thumbnail()中的WordPress函數插入所述圖像包括IMG標籤。有沒有辦法讓它只插入該圖像的src?Wordpress <?php the_post_thumbnail('full'); ?>而不IMG標籤
SOFAR我已經嘗試了本
$image = get_the_post_thumbnail($post->ID, 'thumbnail'); echo $image;
,但它只是導出相同。 任何想法?在此先感謝您的幫助:)
我注意到,使用post_thumbnail()中的WordPress函數插入所述圖像包括IMG標籤。有沒有辦法讓它只插入該圖像的src?Wordpress <?php the_post_thumbnail('full'); ?>而不IMG標籤
SOFAR我已經嘗試了本
$image = get_the_post_thumbnail($post->ID, 'thumbnail'); echo $image;
,但它只是導出相同。 任何想法?在此先感謝您的幫助:)
找到答案。不管怎麼說,還是要謝謝你。
<?php
//Get the Thumbnail URL
$src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), array(320,240), false, '');
echo $src[0];
?>
張貼縮圖鏈接到大圖像尺寸 此示例鏈接到「大」後縮略圖的圖像尺寸,並且必須在環路內使用。
if (has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'large');
if (! empty($large_image_url[0])) {
echo '<a href="' . esc_url($large_image_url[0]) . '" title="' . the_title_attribute(array('echo' => 0)) . '">';
echo get_the_post_thumbnail($post->ID, 'thumbnail');
echo '</a>';
}}
來源:https://developer.wordpress.org/reference/functions/get_the_post_thumbnail/
,你可以使用wordpress.stackexchange.com進一步的問題 – ariefbayu 2010-11-15 00:41:36