我安装了一个名为Translator Box
的插件,我使用它的短代码并将其放入我的wordpress主题header.php中。
[translation_box languages="english,russian,german,spanish,french,chinese" width="100%" height="200px" bgcolor="white" txtcolor="#000000"]
但是不起作用!
它还在窗口小部件中的“启用”窗口小部件中生成窗口小部件。有没有办法在header.php中使用一些可以调用小部件的代码?谢谢。
答案 0 :(得分:15)
您可以在header.php中定义一个部件来显示小部件。 在你的functions.php中做这样的事情:
function my_widgets_init() {
register_sidebar( array(
'name' => __( 'Main Sidebar', 'your-theme' ),
'id' => 'sidebar-1',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => "</div>",
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => __( 'Header Area', 'your-theme' ),
'id' => 'sidebar-2',
'description' => __( 'An optional widget area for your site header', 'your-theme' ),
'before_widget' => '<div id="%1$s" class="headwidget %2$s">',
'after_widget' => "</div>",
'before_title' => '<h3>',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'my_widgets_init' );
例如,第一部分将是侧边栏中的窗口小部件区域,第二部分是标题中的窗口小部件区域。
现在包含在header.php文件中:
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('sidebar-2') ) : ?>
<?php endif; ?>
你的小部件应该在哪里。
在您的管理界面中,您现在应该有两个区域(&#39;主侧边栏&#39;和#39;标题区&#39;)您可以填充小部件。
答案 1 :(得分:2)
<?php echo do_shortcode( $content ) ?>