我定义了我的小部件,如下面的代码所示。由于更新版4.3 Wordpress做了一些更改,我无法修复。有什么想法我需要改变什么才能再次看到前端的小部件吗?我可以在后端小部件菜单中编辑和查看它,但不能在前端。
class Z_Suche extends WP_Widget {
function __construct()
{
parent::__construct( false, $name = \'Z Suchfeld\', array( \'description\' => \'Suchformular im Z-Style.\' ) );
}
function widget( $args, $instance )
{
?>
<div class="widget" id="sidebarsearch">
<h3>Suchen</h3>
<?php get_search_form(); ?>
</div>
<?php
}
function update( $new_instance, $old_instance ) {
$instance = array();
return $instance;
}
function form( $instance ) {}
}
register_widget(\'Z_Suche\');