2017-01-07 6 views
0

메타 데이터 버전을 메타 데이터로 업데이트 할 때. 이 오류가 있습니다.치명적인 오류 : 정의되지 않은 메서드를 호출하십시오. RW_Meta_Box_User :: get_fields()

이 문제를 해결하십시오.

Fatal error: Call to undefined method RW_Meta_Box_User::get_fields() in /home/content/a2pnexwpnas03_data01/86/3452586/html/wp-content/plugins/roker-loader/meta-box/extensions/user_meta/meta_box_user.php on line 40

meta_box_user.php 행 40 : 당신이 RW_Meta_Box_Userget_fields()을 정의하지 않는 한

// Add additional actions for fields 
    $fields = self::get_fields($this->fields); 
    foreach ($fields as $field) 
    { 
     call_user_func(array(self::get_class_name($field), 'add_actions')); 
    } 

답변

0

, 당신은 self::없이 get_fields()을 찾고 할 수있다.

self으로 표시된 방법이나 구성원은 사용중인 클래스 내에 정의되어야합니다.