我迷失了一点。
假设我有一个动态的页脚边栏。很容易到目前为止。
<footer>
<?php get_sidebar("name") ?>
</footer>
在页脚中显示它。
但我们在这里。我想在我的网格中使用EACH小部件:
<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现在不是一个选项,因为它会连续显示所有小部件。而且我不想自己编辑小部件。
他们如何在主题中做到这一点?
感谢。
答案 0 :(得分:17)
您可以使用'the_widget'功能:
<?php the_widget($widget, $instance, $args); ?>
可以在Wordpress Codex - The_Widget reference上找到更多信息。
答案 1 :(得分:2)
这也是一个很好的参考 - Function Reference/dynamic sidebar « 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>
在主题中,然后将小部件放在页面上。
答案 2 :(得分:0)
请查看显示特定小部件的新插件。
答案 3 :(得分:0)
或者您也可以使用:
<?php dynamic_sidebar( 'sidebar-1' ); ?>
答案 4 :(得分: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 );