wp_ajax_menu_locations_save

函数
wp_ajax_menu_locations_save ( No parameters )

wp_ajax_menu_locations_save: 这个函数处理菜单位置的保存: 当用户通过管理员的菜单编辑器保存菜单位置时,它会被触发: 该函数将选定的菜单保存到选定的位置,并相应地更新菜单显示。

菜单位置保存的Ajax处理程序。

function wp_ajax_menu_locations_save() {
	if ( ! current_user_can( 'edit_theme_options' ) ) {
		wp_die( -1 );
	}

	check_ajax_referer( 'add-menu_item', 'menu-settings-column-nonce' );

	if ( ! isset( $_POST['menu-locations'] ) ) {
		wp_die( 0 );
	}

	set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_POST['menu-locations'] ) );
	wp_die( 1 );
}

常见问题

FAQs
查看更多 >