在我们的网站上,我们有一个课程的发言人页面。主要帖子有bio,我为每个帖子添加了侧边栏以显示图片和摘录。摘录仅包含指向网站及其社交媒体网站的链接。摘录中的链接似乎不可点击。 http://www.socialmediaacademy.org.uk/index.php/course-speakers/有没有办法让它们可点击?以下是侧栏的代码:
<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>
答案 0 :(得分:0)
想出来 - 对于那个特定的侧边栏,我在样式表中设置了z-index = -1。这会禁用链接。不知道为什么?有没有人知道为什么?