我有一个 WordPress 小部件,但我不知道如何从表单函数的类下面的 my_custom 函数中获取一个 $title 变量。我尝试了这个新手解决方案但没有用
class My_Widget extends WP_Widget {
public function __construct() {
}
public function widget( $args, $instance ) {
}
public function form( $instance ) {
if ( isset( $instance[ 'title' ] ) ) {
$title = $instance[ 'title' ];
}
else {
$title = 'New title';
}
}
public function update( $new_instance, $old_instance ) {
}
}
function my_custom(){
$my_title = $instance[ 'title' ];
echo $my_title;
}