web-dev-qa-db-ja.com

カスタムウィジェットをWordPressウィジェット内に表示する方法プラグイン開発

これは私にとって初めてのWordPressプラグインです。しかし、私のWP-Adminインターフェースの他のウィジェットの中に私のウィジェットが表示されないのはなぜですか?プラグインを有効にしたときに表示されるはずです。しかしそうではありません。どんな助けにも感謝します!

/ class-level_system-widgets.phpを含みます

class Level_system_Widgets extends WP_Widget {

    public function __construct(){
        $widget_ops = array( 
            'classname' => 'my_widget',
            'description' => 'My Widget is awesome',
        );
        parent::__construct( 'my_widget', 'My Widget', $widget_ops );
    }

    public function widget( $args, $instance ) {
        // outputs the content of the widget
    }   

    public function form( $instance ) {
        // outputs the options form on admin
    }

    public function update( $new_instance, $old_instance ) {
        // processes widget options to be saved
    }

    public function init() {
        add_action( 'widgets_init', function(){
            register_widget( 'My_Widget' );
        }); 
    }
}

level_system.php

function activate_level_system() {
    require_once plugin_dir_path( __FILE__ ) . 'includes/class-level_system-widgets.php';
    Level_system_Widgets::init();
}
1
slider2013

あなたのコメントに基づいて私の答えを更新しました。まずはじめに

プラグインの作り方を読んでください。 https://codex.wordpress.org/Writing_a_Plugin

次にフォルダとあなたのファイルをwp-content/pluginsディレクトリに作成します。以下にこのサンプルプラグインコードを追加してください。

その後、Dashboardからプラグインを有効にしてください。

古い答え

ウィジェットをプラグインとして登録するときは、クラスの後にadd_actionを使用する必要があります。ウィジェットinitはあなたのクラスの前にロードされます。

add_action('widgets_init', create_function('', 'return register_widget("Level_system_Widgets");'));

あなたのクラスの後にこのコードを追加してください(サンプルのWordPress Widgets APIコードで更新されたコード)。

新しい答え

<?php 
/*
Plugin Name: Did you try this widget?
Plugin URI: http://www.wpadami.com/
Description: Did you try this widget?
Version: 1
Author: Serkan Algur
Author URI: http://www.wpadami.com
License: GPL2
*/

class Level_system_Widgets extends WP_Widget {

    public function __construct(){
        $widget_ops = array( 
            'classname' => 'level_system_widget',
            'description' => 'Level System Widget',
        );
        parent::__construct( 'level_system_widget', 'Level System Widget', $widget_ops );
    }

    public function widget( $args, $instance ) {
        echo $args['before_widget'];
        if ( ! empty( $instance['title'] ) ) {
            echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ) . $args['after_title'];
        }
        echo esc_html__( 'Hello, World!', 'text_domain' );
        echo $args['after_widget'];
    }   

    public function form( $instance ) {
        $title = ! empty( $instance['title'] ) ? $instance['title'] : esc_html__( 'New title', 'text_domain' );
    ?>
    <p>
    <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_attr_e( 'Title:', 'text_domain' ); ?></label> 
    <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>">
    </p>
    <?php 
    }

    public function update( $new_instance, $old_instance ) {
        $instance = array();
    $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? sanitize_text_field( $new_instance['title'] ) : '';

    return $instance;
    }

}
add_action('widgets_init', create_function('', 'return register_widget("Level_system_Widgets");'));

Working Sample

このコードは機能します

0
Serkan Algur