更改您的类名
class hexagram_featured_widget extends WP_Widget {
到这个
class WP_Widget_hexagram_featured_widget extends WP_Widget {
还有这条线
parent::__construct(\'false\', $name = __( \'Hexagram Featured Box\'), //tranlation enabled // accessing the perant constructer
到这个
parent::__construct(\'hexagram_featured_widget\', $name = __( \'Hexagram Featured Box\'), //tranlation enabled // accessing the perant constructer
最后换一行
add_action(\'widgets_init\', function() {
register_widget(\'hexagram_featured_widget\');
}
至
add_action(\'widgets_init\', function() {
register_widget(\'WP_Widget_hexagram_featured_widget \');
}