Câu trả lời:
Đặt thuộc parent_slug
tính thành null
, ví dụ;
add_submenu_page(
null // -> Set to null - will hide menu link
, 'Page Title' // -> Page Title
, 'Menu Title' // -> Title that would otherwise appear in the menu
, 'administrator' // -> Capability level
, 'menu_handle' // -> Still accessible via admin.php?page=menu_handle
, 'page_callback' // -> To render the page
);
Điều này sẽ ẩn trang menu phụ khỏi liên kết menu cha mẹ (cấp cao nhất) của bạn.
Nó không nêu điều này trong mục Codexadd_submenu_page
mặc dù.
Bây giờ nó nêu điều này trong mục Codex cho add_submenu_page
(cảm ơn goto Ian Dunn).
options.php
để đạt được hiệu quả tương tự.