반응형
wp 정의되지 않은 함수 add_infined_section
새 설정 페이지 iWordPress에 섹션과 필드를 추가하려고 합니다.하지만 "Call to uninfined function add_settings_section()..."이라는 응답이 나타납니다. 이유를 아시는 분 계신가요?이 코드는 add_settings_section('ac_div', 'Instellningar', 'ac_section_text', 'Anders-counter');
add_settings_field(
'diven',
'För in mätarställningen här',
'ac_add_field',
'Anders-counter',
'ac_div');
도와주셔서 감사합니다.앤더스
add_settings_field
아래에 위치한 함수wp-admin/includes/template.php
호출하기 전에 해당 파일을 로드할 수 있습니다.add_settings_field
또는 아래에 코드를 추가합니다.admin_init
갈고리
add_action('admin_init', 'your_function');
function your_function(){
add_settings_field(
'diven',
'För in mätarställningen här',
'ac_add_field',
'Anders-counter',
'ac_div'
);
}
언급URL : https://stackoverflow.com/questions/42386760/wp-undefined-function-add-settings-section
반응형
'programing' 카테고리의 다른 글
Argparse 인수에 대한 특정 값 허용 (0) | 2023.06.07 |
---|---|
Node.js - Mongoose와 관계 만들기 (0) | 2023.06.07 |
Ts-node : 구문 오류: 모듈 외부에서 가져오기 문을 사용할 수 없습니다. (0) | 2023.06.07 |
현재 시스템을 가져옵니다.HttpContext의 Web.UI.Page? (0) | 2023.06.07 |
facet_grid 플롯의 스트립 텍스트를 어떻게 조작할 수 있습니까? (0) | 2023.06.07 |