出于某种原因,Wordpress在我的小部件之前插入了一个换行符,这个小部件正在抛弃我的网站。
查看底部的http://mytimeforart.com/galleries/pen-and-ink/,其中有3列(最近的TWeets,Inquire With Us和一个空白列)。看看小部件标题上方的差距?这是神秘线路的结果。
这是中间窗口小部件的源代码:
<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>',
));
非常感谢任何帮助!
谢谢,
辛西娅