编程语言
首页 > 编程语言> > php-WordPress-以编程方式添加小部件

php-WordPress-以编程方式添加小部件

作者:互联网

我在wordpress.stackexchange.com上问了这个问题,但没有答复.

我想以编程方式将小部件添加到我的wordpress网站.我从codex docs尝试了以下代码:

class MyNewWidget extends WP_Widget {

    function MyNewWidget() {
        // Instantiate the parent object
        parent::__construct( false, 'My New Widget Title' );
    }

    function widget( $args, $instance ) {
        // Widget output
    }

    function update( $new_instance, $old_instance ) {
        // Save widget options
    }

    function form( $instance ) {
        // Output admin widget options form
    }
}

function myplugin_register_widgets() {
    register_widget( 'MyNewWidget' );
}

add_action( 'widgets_init', 'myplugin_register_widgets' );

但似乎不起作用.我什至尝试了来自问题Programmatically add widgets to sidebars的代码,但无济于事.请告诉我是否遗漏了一些东西.

谢谢

解决方法:

我认为您的构造函数有误.请尝试以下操作:

<?php

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

class MyNewWidget extends WP_Widget {
    function __construct() {
        $widget_ops = array('classname' => 'MyNewWidget', 'description' => __('Widget description'));
        parent::__construct('MyNewWidget', __('Widget Name'), $widget_ops);
    }

    function widget( $args, $instance ) {
        extract($args);
        echo $before_widget;

        echo $before_title . __('Widget title') . $after_title;

        // widget logic/output

        echo $after_widget;
    }

    function update( $new_instance, $old_instance ) {
        // Save widget options
    }

    function form( $instance ) {
        // Output admin widget options form
    }
}

?>

另外,请确保您有描述,并为此创建了一个插件,并在管理面板中的“插件”下将其激活.

标签:wordpress-plugin,wordpress,php
来源: https://codeday.me/bug/20191201/2081519.html