1

新しいサイドバーを追加しました

function child_register_sidebar(){
    register_sidebar(array(
        'name' => 'Social Media (Follow)',
        'id' => 'sidebar-follow',
        'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'theme-slug' ),
        'before_widget' => '',
        'after_widget' => '',
        'before_title' => '',
        'after_title' => '',
    ));

}

私のテンプレートでは、

<?php if ( is_active_sidebar( 'sidebar-follow' ) ) { ?>
    <div class="follow-container">
        <?php dynamic_sidebar( 'sidebar-follow' ); ?>
    </div>
<?php } ?>

結果:

<div class="follow-container">
      <div class="textwidget">
           <a href="[full link to your Twitter]">
              <img title="Twitter" alt="Twitter" src="https://socialmediawidgets.files.wordpress.com/2014/03/01_twitter1.png" width="35" height="35" />
           </a>
      </div>
</div>

クラス名を削除または別の名前に変更するにはどうすればよい<div class="textwidget">ですか?

4

2 に答える 2

4

textwiget を削除し、functions.php に独自のクラスを適用するには、このコードを試してください。

    function register_my_widgets() {
    register_sidebar(array(
        'name' => 'test-widget',
        'id' => 'test-widget',
        'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'theme-slug' ),
        'before_widget' => '',
        'after_widget' => '',
        'before_title' => '',
        'after_title' => '',
    ));
    register_widget( 'My_Text_Widget' );
}

class My_Text_Widget extends WP_Widget_Text {
    function widget( $args, $instance ) {
        extract($args);
        $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
        $text = apply_filters( 'widget_text', empty( $instance['text'] ) ? '' : $instance['text'], $instance );
        echo $before_widget;
        if ( !empty( $title ) ) { echo $before_title . $title . $after_title; } ?>
            <?php echo !empty( $instance['filter'] ) ? wpautop( $text ) : $text; ?>
        <?php
        echo $after_widget;
    }
}
于 2016-03-04T09:54:45.790 に答える