0
我想要做我自己的滑塊。我快完成了,但我需要將我的鏈接網址顯示爲標題或其他內容。wordpress在圖像上顯示標題
我應該添加什麼來獲取鏈接和顯示? 這是我的代碼
<?php
// The Loop
while ($the_query->have_posts()) : $the_query->the_post(); ?><li>
<?php
// Check if there's a Slide URL given and if so let's a link to it
if (get_post_meta(get_the_id(), 'wptuts_slideurl', true) != '') { ?>
<a href="<?php echo esc_url(get_post_meta(get_the_id(),'wptuts_slideurl', true)); ?>">
<?php }
// The Slide's Image
echo the_post_thumbnail();
// Close off the Slide's Link if there is one
if (get_post_meta(get_the_id(), 'wptuts_slideurl', true) != '') { ?>
</a> <?php } ?> </li>
<?php endwhile; ?>
是啊!謝謝我自己做的,但我添加了第二個字段的形式,所以我可以給它鏈接和自定義名稱;)但它確切地說你如何說);) – user2011199