出于某种原因,Wordpress 在我的小部件之前插入了一个换行符,这让我的网站无法正常工作。
看看底部的http://mytimeforart.com/galleries/pen-and-ink/,其中有 3 列(最近的推文、咨询我们和空白列)。看到小部件标题上方的空白了吗?这就是神秘断线的结果。
这是中间小部件的源代码:
<div id="footer-mid"><div class="bottom-widget"><h4>Inquire With Us</h4> <div class="textwidget">Lorem ipsum dolor sit amet cons ecter adipisicing elit, sed a eiuma smod temp incididunt ut<br>
<a href="/contact"><img src="/wp-content/uploads/2013/02/inquire.png" border="0" style="margin-top:6px"></a></div>
</div></div>
以及它是如何在我的主题中设置的:
<div id="footer-mid"><?php get_sidebar('bottom-2'); ?></div>
以及它是如何在我的functions.php中设置的:
if ( function_exists('register_sidebar') )
register_sidebar(array('name'=>'Sidebar Bottom 2',
'before_widget' => '<div class="bottom-widget">',
'after_widget' => '</div>',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
任何帮助将非常感激!
谢谢,
辛西娅