web-dev-qa-db-ja.com

カスタムウィジェットの作成 PHP 独自に配置した場合の例外 PHP ファイル

カスタムプラグインを作成し、ウィジェットを作成しました。現時点では、このコードはプラグインとその正常な動作のためのベースphpファイルに含まれています。私はウィジェットと将来のすべてのものをwidgets.phpファイルに移動し、それらをメインプラグインファイルに含めたいと思います。私がこれをすると、私は次のphpエラーが出ます。

PHP致命的エラー:1387行目の/var/www/wordpresstest/wp-includes/capabilities.php内の未定義関数wp_get_current_user()の呼び出し

これはウィジェットのコードです。このコードはメインプラグインのphpファイルに置いたときには完璧に動作しますが、require "widgets.php"を使うとエラーになります。

<?php 
class nb_game_info_widget extends WP_Widget 
{
    function __construct() 
    {
        parent::__construct('nb_game_info_widget', __('Test Widget', 'nb_game_info_widget_domain'), array( 'description' => __( 'Game IDS Widget', 'nb_game_info_widget_domain' )));
    }

    public function widget( $args, $instance ) 
    {
        if(is_single())
        {
            $title = apply_filters( 'widget_title', $instance['title'] );
            echo $args['before_widget'];
            if ( ! empty( $title ) )
            echo $args['before_title'] . $title . $args['after_title'];

            global $post;
            $postid = $post->ID;

            $gameids = get_post_meta( $postid, 'nb_gameids_key', true );
            $platformids = get_post_meta( $postid, 'nb_platformids_key', true );
            echo "GAME IDS ! = ". $gameids;

            //required for the theme to do whatever it does
            echo $args['after_widget'];
        }
    }

    // Widget Backend 
    public function form( $instance ) {
        if ( isset( $instance[ 'title' ] ) ) 
        {
            $title = $instance[ 'title' ];
        }
        else {
            $title = __( 'New title', 'nb_game_info_widget_domain' );
        }
        // Widget admin form
        ?>
        <p>
        <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label> 
        <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
        </p>
        <?php 
    }

    // Updating widget replacing old instances with new
    public function update( $new_instance, $old_instance ) 
    {
        $instance = array();
        $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
        return $instance;
    }
} // Class nb_game_info_widget ends here

// Register and load the widget
function nb_loag_gameinfo_widget() {
    register_widget( 'nb_game_info_widget' );
}
add_action( 'widgets_init', 'nb_loag_gameinfo_widget' );
1
Dan Hastings

これで問題が解決する理由はわかりませんが、解決できます。別のファイル名を使用してください。例えば、include('my_widgets.php');

私はあなたがinclude('widgets.php');で説明するが、異なるファイル名では説明しないというエラーを受け取ります。理由はわかりません。私はWordPressにwidgets.phpという名前のコアファイルがあることを知っていますが、なぜ競合があるのか​​わからないのですが。これはincludeがファイルをクロールする方法と関係があるに違いありませんが、私は調査を行う必要があります。物語の教訓:一般的なファイル名は使用しないでください:)

2
s_ha_dum