0
在我們的網站上,我們有一個課程演講者頁面。主要職位有生物,我爲每個職位添加了一個側欄以顯示圖片和摘錄。摘錄僅包含網站及其社交媒體網站的鏈接。摘錄中的鏈接似乎不可點擊。 http://www.socialmediaacademy.org.uk/index.php/course-speakers/有沒有辦法讓他們點擊?下面是側邊欄的代碼:Wordpress摘錄中的鏈接不起作用
<div id="sidebarbio">
<ul class="sidebar_list">
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
<li class="widget">
</li>
<div class="post">
<div>
<?php // if there's a thumbnail
if($thumb !== '') { ?>
<p>
<img src="<?php echo $thumb; ?>"
class="<?php if($thumb_class !== '') { echo $thumb_class; } else { echo "left"; } ?>"
alt="<?php if($thumb_alt !== '') { echo $thumb_alt; } else { echo the_title(); } ?>"
/>
</p>
<?php } // end if statement
// if there's not a thumbnail
else { echo ''; } ?>
<?php the_excerpt(); ?>
<?php $image = get_post_meta($post->ID, 'image', TRUE); ?>
<?php if($image) { ?><img src="<?php echo $image; ?>" alt="Alt Text" /><?php } ?>
</div>
</div>
<?php endif; ?>
</ul>