WordPress 4.0에서 하위 메뉴 페이지 "customize.php" 제거 WP 3.9.2를 실행하고 있을 때 아래 코드를 사용하여 관리 메뉴의 외관에서 Customize 메뉴 항목을 삭제할 수 있었습니다. function remove_customize() { remove_submenu_page('themes.php', 'customize.php'); } add_action('admin_init', 'remove_customize', 999); 4.0으로 업데이트하면 더 이상 작동하지 않습니다.다음 위치에서 WordPress 4.1, 4.0 및 3.x와 함께 작동합니다. 편집: WordPress 4.1 호환성을 위해 조정됨: function remove_customize() { $customize_..