我已經創建了一個自定義的帖子類型,它通過一個插件彈出。 但是圖像沒有出現在彈出窗口中,所以我想在href標籤中調用圖像,我不知道如何調用它。如何在href標籤中獲得wordpress特色圖片
有一些代碼
<?php
$args = array('post_type' => 'Gallery', 'posts_per_page' => All);
$loop = new WP_Query($args);
while ($loop->have_posts()) : $loop->the_post();
echo '<div class="thumbnail-container"><div class="thumbnail-wrap"><a title"" rel="lightbox" href="#" >';
the_post_thumbnail(full);
echo '</a><div class="thumbnail-containt">';
the_content();
echo '</div></div></div>';
endwhile;
?>
感謝pranita,一爲你:) –