我有一个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;
}
答案 0 :(得分: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;
}