mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-10 13:30:04 +00:00
* All WordPress files move to a src/ directory. * New task runner (Grunt), configured to copy a built WordPress to build/. * svn:ignore and .gitignore for Gruntfile.js, wp-config.php, and node.js. * Remove Akismet external from develop.svn. Still exists in core.svn. * Drop minified files from src/. The build process will now generate these. props koop. see #24976. and see http://wp.me/p2AvED-1AI. git-svn-id: https://develop.svn.wordpress.org/trunk@25001 602fd350-edb4-49c9-b593-d223f7449a82
23 lines
671 B
PHP
23 lines
671 B
PHP
<?php
|
|
/**
|
|
* Build User Administration Menu.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
* @since 3.1.0
|
|
*/
|
|
|
|
$menu[2] = array(__('Dashboard'), 'exist', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'div');
|
|
|
|
$menu[4] = array( '', 'exist', 'separator1', '', 'wp-menu-separator' );
|
|
|
|
$menu[70] = array( __('Profile'), 'exist', 'profile.php', '', 'menu-top menu-icon-users', 'menu-users', 'div' );
|
|
|
|
$menu[99] = array( '', 'exist', 'separator-last', '', 'wp-menu-separator-last' );
|
|
|
|
$_wp_real_parent_file['users.php'] = 'profile.php';
|
|
$compat = array();
|
|
$submenu = array();
|
|
|
|
require_once(ABSPATH . 'wp-admin/includes/menu.php');
|