0

我有一个 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;

    }
4

1 回答 1

0

首先制作一个类的对象,然后获取类变量

class My_Widget extends WP_Widget {
public $mytitle;
public function __construct() {

}

public function widget( $args, $instance ) {

}

public function form( $instance ) {

         if ( isset( $instance[ 'title' ] ) ) {
        $this->mytitle = $instance[ 'title' ];
     }
     else {
    $this->mytitle = 'New title';

}
    }
public function update( $new_instance, $old_instance ) {

}
    }

    function my_custom(){
     $widgetobj=new My_Widget();
     $my_title = $widgetobj->mytitle;
      echo $my_title;

    }
于 2013-07-18T19:07:35.497 回答