小工具未在Wordpress中显示

问题描述 投票:0回答:1

我的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; ?>

我怎样才能解决这个问题?

php html wordpress plugins widget
1个回答
0
投票

在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; ?>
© www.soinside.com 2019 - 2024. All rights reserved.