我在Wordpress主题上录制了一些侧边栏,但我想在主题安装时加载一些小部件,对我有帮助吗?
侧栏代码:
register_sidebar(array(
'name' => 'Footer Widgets',
'before_widget' => '<div id="%1$s" class="row widget %2$s"><div class="widget-section">',
'after_widget' => '</div></div>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
));
答案 0 :(得分:0)
您在该代码中缺少ID。它应该是
register_sidebar(array(
'name' => 'Footer Widgets',
'id' => 'footer-widget',
'before_widget' => '<div id="%1$s" class="row widget %2$s"><div class="widget-section">',
'after_widget' => '</div></div>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
));
你可以在你的主题上调用它,如
<?php dynamic_sidebar( 'footer-widget' ); ?>
答案 1 :(得分:0)
我已经创建了一个动态侧边栏区域,我现在想要在我的主题安装中填充她的动态小部件。