22

我有点迷路了。

假设我有一个动态页脚侧边栏。到目前为止很容易。

<footer>
    <?php get_sidebar("name") ?>  
</footer>

在页脚中显示它。

但我们在这里。我希望网格内的每个小部件:

      <footer>
         <div style="width: 100px:">
            <div style="width: 25%">First widget here</div>
            <div style="width: 25%">Second widget here<</div>
            <div style="width: 25%">Third widget here<</div>
            <div style="width: 25%">Fourth widget here<</div>
          </div>
        </footer>

所以 get_sidebar 现在不是一个选项,因为它会连续显示所有小部件。而且我不想编辑小部件本身。

他们如何在主题中做到这一点?

谢谢。

4

5 回答 5

21

您可以为此使用“the_widget”功能:

<?php the_widget($widget, $instance, $args); ?>

更多信息可以在Wordpress Codex-The_Widget 参考中找到。

于 2010-11-18T12:43:01.493 回答
2

这也是一个很好的参考 -函数参考/动态侧边栏 « WordPress Codex

如果您使用该页面上的方法:

<ul id="sidebar">
 <?php if ( !dynamic_sidebar() ) : ?>
    <li>{static sidebar item 1}</li>
    <li>{static sidebar item 2}</li>
 <?php endif; ?>
 </ul>

然后,您可以使用 CSS 样式将侧边栏小部件放置在页脚上。

编辑以包括以下内容...

Arras 主题 CSS:

#footer             { margin: 20px auto 0; width: 980px; background: #ECEBE6; padding-bottom: 10px; border: 1px solid #CCC; }
#footer .widgetcontainer    { padding: 5px 10px; min-width: 150px; }
.no-js #footer .widgetcontainer { height: 190px; }
#footer .widgettitle    { background: none; border: none; font-size: 14px; color: #444; padding: 0 0 10px; letter-spacing: -1px; }
#footer .widgetcontent  { font-size: 12px; background: none; padding: 0; border: none; }
#footer .footer-message { margin: 0; padding: 10px 15px 0; font-size: 11px; }
#footer .footer-message p { margin: 0 0 0.5em; }
#footer .footer-message .floatright { margin-left: 20px; }
#footer-sidebar     { overflow: hidden; margin: 10px 10px 0; padding: 0 0 10px; border-bottom: 1px solid #CCC; }
#footer-sidebar .widgetcontainer    { float: left; margin: 0; max-width: 250px; }
#footer-sidebar ul  { list-style: none; margin: 0; padding: 0; }
#footer-sidebar li  { margin: 0 0 3px; }

页脚编码:

<ul id="footer-sidebar" class="clearfix xoxo">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer') ) : ?>
        <li></li>
    <?php endif; ?>
</ul>

然后在主题中将小部件放置在页面上。

于 2010-11-18T12:48:51.557 回答
0

请查看我的显示特定小部件的新插件。

访问: http ://wordpress.org/extend/plugins/widget-instance/

于 2012-06-11T08:18:37.710 回答
0

或者,您也可以使用:

<?php dynamic_sidebar( 'sidebar-1' ); ?>   
于 2013-12-04T15:37:21.983 回答
0

您可以使用小部件选项插件来限制或控制小部件在任何页面和设备上的可见性;在存储库中免费提供:https ://wordpress.org/plugins/widget-options/ 。或尝试使用widget_display_callback https://developer.wordpress.org/reference/hooks/widget_display_callback/。我希望这有帮助。

function custom_display_callback( $instance, $widget, $args ){
    if( is_page() ){
        return false;
    }
    return $instance;
}
add_filter( 'widget_display_callback', 'custom_display_callback', 50, 3 );

在此处输入图像描述

于 2017-09-10T06:08:24.597 回答