wp_nav_menu_disabled_check

函数


wp_nav_menu_disabled_check ( $nav_menu_selected_id, $display = true )
参数
  • (int|string)
    $nav_menu_selected_id
    ID, name, or slug of the currently selected menu.
    Required:
  • (bool)
    $display
    Whether to display or just return the string.
    Required:
    Default: true
返回值
  • (string|false) Disabled attribute if at least one menu exists, false if not.
定义位置
  • wp-admin/includes/nav-menu.php
    , line 273
引入
3.6.0
弃用

Check whether to disable the Menu Locations meta box submit button and inputs.

function wp_nav_menu_disabled_check( $nav_menu_selected_id, $display = true ) {
	global $one_theme_location_no_menus;

	if ( $one_theme_location_no_menus ) {
		return false;
	}

	return disabled( $nav_menu_selected_id, 0, $display );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。