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;
}