小工具未在Wordpress中显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小工具未在Wordpress中显示相关的知识,希望对你有一定的参考价值。
我的Wordpress小部件有问题。我用html创建了一个Wordpress模板。我想在我的“关于我们”页面上添加此小部件,但不显示小部件。
这是我在function.php
的代码
function wpb_widgets_init() {
register_sidebar( array(
'name' => 'Custom Header Widget Area',
'id' => 'custom-header-widget',
'before_widget' => '<div class="chw-widget">',
'after_widget' => '</div>',
'before_title' => '<h2 class="chw-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'wpb_widgets_init' );
这段代码是我的主题page-about.php
:
<?php
if ( is_active_sidebar( 'custom-header-widget' ) ) : ?>
<div id="header-widget-area" class="chw-widget-area widget-area" role="complementary">
<?php dynamic_sidebar( 'custom-header-widget' ); ?>
</div>
<?php endif; ?>
我怎样才能解决这个问题?
答案
在function.php中添加波纹管代码
function wpb_widgets_init() {
register_sidebar( array(
'name' => 'Custom Header Widget Area',
'id' => 'custom-header-widget',
'before_widget' => '<div class="chw-widget">',
'after_widget' => '</div>',
'before_title' => '<h2 class="chw-title">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'wpb_widgets_init' );
并在page-about.php中添加此代码
<?php
if ( is_active_sidebar( 'custom-header-widget' ) ) : ?>
<div id="header-widget-area" class="chw-widget-area widget-area" role="complementary">
<?php dynamic_sidebar( 'custom-header-widget' ); ?>
</div>
<?php endif; ?>
以上是关于小工具未在Wordpress中显示的主要内容,如果未能解决你的问题,请参考以下文章
Listview 项目未在 Fragment Android 中显示
WordPress 插件内容未在 Internet Explorer 中显示
回收站视图未在 android studio 中显示一张卡片视图