2010-09-27 22:26:36 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-14 19:27:25 +02:00
|
|
|
* Toolbar API: Top-level Toolbar functionality
|
2010-09-27 22:26:36 +02:00
|
|
|
*
|
2015-10-14 19:27:25 +02:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Toolbar
|
|
|
|
* @since 3.1.0
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2010-11-17 19:47:34 +01:00
|
|
|
|
2010-09-27 22:26:36 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Instantiates the admin bar object and set it up as a global for access elsewhere.
|
2010-10-28 10:31:36 +02:00
|
|
|
*
|
2013-02-28 17:56:35 +01:00
|
|
|
* UNHOOKING THIS FUNCTION WILL NOT PROPERLY REMOVE THE ADMIN BAR.
|
2016-05-23 20:59:27 +02:00
|
|
|
* For that, use show_admin_bar(false) or the {@see 'show_admin_bar'} filter.
|
2011-01-14 06:57:25 +01:00
|
|
|
*
|
2010-10-28 10:31:36 +02:00
|
|
|
* @since 3.1.0
|
2011-01-14 06:57:25 +01:00
|
|
|
* @access private
|
2015-05-22 06:00:26 +02:00
|
|
|
*
|
|
|
|
* @global WP_Admin_Bar $wp_admin_bar
|
|
|
|
*
|
2010-10-28 10:31:36 +02:00
|
|
|
* @return bool Whether the admin bar was successfully initialized.
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2011-01-14 06:57:25 +01:00
|
|
|
function _wp_admin_bar_init() {
|
2010-10-28 10:31:36 +02:00
|
|
|
global $wp_admin_bar;
|
2010-09-27 22:26:36 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! is_admin_bar_showing() ) {
|
2010-09-27 22:26:36 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2016-08-31 18:31:29 +02:00
|
|
|
|
|
|
|
/* Load the admin bar class code ready for instantiation */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once ABSPATH . WPINC . '/class-wp-admin-bar.php';
|
2010-09-27 22:26:36 +02:00
|
|
|
|
2010-10-28 10:31:36 +02:00
|
|
|
/* Instantiate the admin bar */
|
2013-10-26 23:18:09 +02:00
|
|
|
|
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters the admin bar class to instantiate.
|
2013-10-26 23:18:09 +02:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param string $wp_admin_bar_class Admin bar class to use. Default 'WP_Admin_Bar'.
|
|
|
|
*/
|
2010-10-28 10:31:36 +02:00
|
|
|
$admin_bar_class = apply_filters( 'wp_admin_bar_class', 'WP_Admin_Bar' );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( class_exists( $admin_bar_class ) ) {
|
2022-11-29 16:51:14 +01:00
|
|
|
$wp_admin_bar = new $admin_bar_class();
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2010-10-28 10:31:36 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2016-08-31 18:31:29 +02:00
|
|
|
|
2010-10-28 10:31:36 +02:00
|
|
|
$wp_admin_bar->initialize();
|
|
|
|
$wp_admin_bar->add_menus();
|
2010-10-20 15:07:54 +02:00
|
|
|
|
2010-10-28 10:31:36 +02:00
|
|
|
return true;
|
2010-09-27 22:26:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-23 20:59:27 +02:00
|
|
|
* Renders the admin bar to the page based on the $wp_admin_bar->menu member var.
|
2010-09-27 22:26:36 +02:00
|
|
|
*
|
2020-03-14 17:01:08 +01:00
|
|
|
* This is called very early on the {@see 'wp_body_open'} action so that it will render
|
|
|
|
* before anything else being added to the page body.
|
|
|
|
*
|
|
|
|
* For backward compatibility with themes not using the 'wp_body_open' action,
|
|
|
|
* the function is also called late on {@see 'wp_footer'}.
|
2016-05-23 20:59:27 +02:00
|
|
|
*
|
|
|
|
* It includes the {@see 'admin_bar_menu'} action which should be used to hook in and
|
|
|
|
* add new menus to the admin bar. That way you can be sure that you are adding at most
|
|
|
|
* optimal point, right before the admin bar is rendered. This also gives you access to
|
|
|
|
* the `$post` global, among others.
|
2010-10-28 10:31:36 +02:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2020-03-14 17:01:08 +01:00
|
|
|
* @since 5.4.0 Called on 'wp_body_open' action first, with 'wp_footer' as a fallback.
|
2015-05-22 06:00:26 +02:00
|
|
|
*
|
|
|
|
* @global WP_Admin_Bar $wp_admin_bar
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_render() {
|
|
|
|
global $wp_admin_bar;
|
2020-03-14 17:01:08 +01:00
|
|
|
static $rendered = false;
|
|
|
|
|
|
|
|
if ( $rendered ) {
|
|
|
|
return;
|
|
|
|
}
|
2010-09-27 22:26:36 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! is_admin_bar_showing() || ! is_object( $wp_admin_bar ) ) {
|
2015-05-21 22:09:24 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-23 21:49:25 +02:00
|
|
|
|
2013-10-26 23:18:09 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Loads all necessary admin bar items.
|
2013-10-26 23:18:09 +02:00
|
|
|
*
|
|
|
|
* This is the hook used to add, remove, or manipulate admin bar items.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance, passed by reference.
|
2013-10-26 23:18:09 +02:00
|
|
|
*/
|
2010-12-15 18:33:02 +01:00
|
|
|
do_action_ref_array( 'admin_bar_menu', array( &$wp_admin_bar ) );
|
2010-11-11 20:11:12 +01:00
|
|
|
|
2013-10-26 23:18:09 +02:00
|
|
|
/**
|
|
|
|
* Fires before the admin bar is rendered.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
2010-09-27 22:26:36 +02:00
|
|
|
do_action( 'wp_before_admin_bar_render' );
|
|
|
|
|
|
|
|
$wp_admin_bar->render();
|
|
|
|
|
2013-10-26 23:18:09 +02:00
|
|
|
/**
|
|
|
|
* Fires after the admin bar is rendered.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
2010-09-27 22:26:36 +02:00
|
|
|
do_action( 'wp_after_admin_bar_render' );
|
2020-03-14 17:01:08 +01:00
|
|
|
|
|
|
|
$rendered = true;
|
2010-09-27 22:26:36 +02:00
|
|
|
}
|
|
|
|
|
2011-09-26 01:30:40 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds the WordPress logo menu.
|
2011-09-26 01:30:40 +02:00
|
|
|
*
|
|
|
|
* @since 3.3.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2011-09-26 01:30:40 +02:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_wp_menu( $wp_admin_bar ) {
|
2016-09-27 21:01:29 +02:00
|
|
|
if ( current_user_can( 'read' ) ) {
|
|
|
|
$about_url = self_admin_url( 'about.php' );
|
|
|
|
} elseif ( is_multisite() ) {
|
|
|
|
$about_url = get_dashboard_url( get_current_user_id(), 'about.php' );
|
|
|
|
} else {
|
|
|
|
$about_url = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$wp_logo_menu_args = array(
|
2011-09-26 01:30:40 +02:00
|
|
|
'id' => 'wp-logo',
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
'title' => '<span class="ab-icon" aria-hidden="true"></span><span class="screen-reader-text">' .
|
|
|
|
/* translators: Hidden accessibility text. */
|
|
|
|
__( 'About WordPress' ) .
|
|
|
|
'</span>',
|
2016-09-27 21:01:29 +02:00
|
|
|
'href' => $about_url,
|
|
|
|
);
|
|
|
|
|
|
|
|
// Set tabindex="0" to make sub menus accessible when no URL is available.
|
|
|
|
if ( ! $about_url ) {
|
|
|
|
$wp_logo_menu_args['meta'] = array(
|
|
|
|
'tabindex' => 0,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node( $wp_logo_menu_args );
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2016-09-27 21:01:29 +02:00
|
|
|
if ( $about_url ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Add "About WordPress" link.
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'wp-logo',
|
|
|
|
'id' => 'about',
|
|
|
|
'title' => __( 'About WordPress' ),
|
|
|
|
'href' => $about_url,
|
|
|
|
)
|
|
|
|
);
|
2011-10-22 12:56:04 +02:00
|
|
|
}
|
2011-10-05 20:45:32 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Add WordPress.org link.
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'wp-logo-external',
|
|
|
|
'id' => 'wporg',
|
|
|
|
'title' => __( 'WordPress.org' ),
|
|
|
|
'href' => __( 'https://wordpress.org/' ),
|
|
|
|
)
|
|
|
|
);
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2021-01-25 13:53:58 +01:00
|
|
|
// Add documentation link.
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'wp-logo-external',
|
|
|
|
'id' => 'documentation',
|
|
|
|
'title' => __( 'Documentation' ),
|
2023-02-23 13:34:18 +01:00
|
|
|
'href' => __( 'https://wordpress.org/documentation/' ),
|
2017-12-01 00:11:00 +01:00
|
|
|
)
|
|
|
|
);
|
2011-10-05 20:45:32 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Add forums link.
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'wp-logo-external',
|
|
|
|
'id' => 'support-forums',
|
2019-04-09 00:59:56 +02:00
|
|
|
'title' => __( 'Support' ),
|
2021-01-25 13:53:58 +01:00
|
|
|
'href' => __( 'https://wordpress.org/support/forums/' ),
|
2017-12-01 00:11:00 +01:00
|
|
|
)
|
|
|
|
);
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Add feedback link.
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'wp-logo-external',
|
|
|
|
'id' => 'feedback',
|
|
|
|
'title' => __( 'Feedback' ),
|
|
|
|
'href' => __( 'https://wordpress.org/support/forum/requests-and-feedback' ),
|
|
|
|
)
|
|
|
|
);
|
2011-09-26 01:30:40 +02:00
|
|
|
}
|
|
|
|
|
2013-11-13 19:00:10 +01:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds the sidebar toggle button.
|
2013-11-13 19:00:10 +01:00
|
|
|
*
|
|
|
|
* @since 3.8.0
|
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2013-11-13 19:00:10 +01:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_sidebar_toggle( $wp_admin_bar ) {
|
|
|
|
if ( is_admin() ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'menu-toggle',
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
'title' => '<span class="ab-icon" aria-hidden="true"></span><span class="screen-reader-text">' .
|
|
|
|
/* translators: Hidden accessibility text. */
|
|
|
|
__( 'Menu' ) .
|
|
|
|
'</span>',
|
2017-12-01 00:11:00 +01:00
|
|
|
'href' => '#',
|
|
|
|
)
|
|
|
|
);
|
2013-11-13 19:00:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-27 22:26:36 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds the "My Account" item.
|
2011-12-06 04:51:58 +01:00
|
|
|
*
|
|
|
|
* @since 3.3.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2011-12-06 04:51:58 +01:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_my_account_item( $wp_admin_bar ) {
|
|
|
|
$user_id = get_current_user_id();
|
|
|
|
$current_user = wp_get_current_user();
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $user_id ) {
|
2011-12-06 04:51:58 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-12-06 04:51:58 +01:00
|
|
|
|
2015-09-14 19:10:26 +02:00
|
|
|
if ( current_user_can( 'read' ) ) {
|
|
|
|
$profile_url = get_edit_profile_url( $user_id );
|
|
|
|
} elseif ( is_multisite() ) {
|
|
|
|
$profile_url = get_dashboard_url( $user_id, 'profile.php' );
|
|
|
|
} else {
|
|
|
|
$profile_url = false;
|
|
|
|
}
|
|
|
|
|
2013-12-08 08:43:11 +01:00
|
|
|
$avatar = get_avatar( $user_id, 26 );
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Current user's display name. */
|
2017-12-01 00:11:00 +01:00
|
|
|
$howdy = sprintf( __( 'Howdy, %s' ), '<span class="display-name">' . $current_user->display_name . '</span>' );
|
|
|
|
$class = empty( $avatar ) ? '' : 'with-avatar';
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'my-account',
|
|
|
|
'parent' => 'top-secondary',
|
|
|
|
'title' => $howdy . $avatar,
|
|
|
|
'href' => $profile_url,
|
|
|
|
'meta' => array(
|
|
|
|
'class' => $class,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
2011-12-06 04:51:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds the "My Account" submenu items.
|
2010-10-28 10:31:36 +02:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_my_account_menu( $wp_admin_bar ) {
|
2011-09-26 01:30:40 +02:00
|
|
|
$user_id = get_current_user_id();
|
|
|
|
$current_user = wp_get_current_user();
|
2010-11-17 19:47:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $user_id ) {
|
2011-12-06 04:51:58 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-12-14 14:42:56 +01:00
|
|
|
|
2015-09-14 19:10:26 +02:00
|
|
|
if ( current_user_can( 'read' ) ) {
|
|
|
|
$profile_url = get_edit_profile_url( $user_id );
|
|
|
|
} elseif ( is_multisite() ) {
|
|
|
|
$profile_url = get_dashboard_url( $user_id, 'profile.php' );
|
|
|
|
} else {
|
|
|
|
$profile_url = false;
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$wp_admin_bar->add_group(
|
|
|
|
array(
|
|
|
|
'parent' => 'my-account',
|
|
|
|
'id' => 'user-actions',
|
|
|
|
)
|
|
|
|
);
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2011-12-06 04:51:58 +01:00
|
|
|
$user_info = get_avatar( $user_id, 64 );
|
|
|
|
$user_info .= "<span class='display-name'>{$current_user->display_name}</span>";
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $current_user->display_name !== $current_user->user_login ) {
|
2013-01-31 02:39:08 +01:00
|
|
|
$user_info .= "<span class='username'>{$current_user->user_login}</span>";
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
2015-09-14 19:10:26 +02:00
|
|
|
'parent' => 'user-actions',
|
2017-12-01 00:11:00 +01:00
|
|
|
'id' => 'user-info',
|
|
|
|
'title' => $user_info,
|
2015-09-14 19:10:26 +02:00
|
|
|
'href' => $profile_url,
|
2017-12-01 00:11:00 +01:00
|
|
|
'meta' => array(
|
|
|
|
'tabindex' => -1,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( false !== $profile_url ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'user-actions',
|
|
|
|
'id' => 'edit-profile',
|
Users: Change "Your Profile" and "My Profile" links in admin menu and toolbar to just "Profile" for consistency.
Props donmhico, bcworkz, seanchayes, mikeschroder, garrett-eclipse, akhileshsabharwal, ScottSmith, nacin, jenmylo, afercia, swissspidy, felix-edelmann, helen, melchoyce, karmatosed.
Fixes #26769.
Built from https://develop.svn.wordpress.org/trunk@47600
git-svn-id: http://core.svn.wordpress.org/trunk@47375 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-04-20 10:39:06 +02:00
|
|
|
'title' => __( 'Edit Profile' ),
|
2017-12-01 00:11:00 +01:00
|
|
|
'href' => $profile_url,
|
|
|
|
)
|
|
|
|
);
|
2015-09-14 19:10:26 +02:00
|
|
|
}
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'user-actions',
|
|
|
|
'id' => 'logout',
|
|
|
|
'title' => __( 'Log Out' ),
|
|
|
|
'href' => wp_logout_url(),
|
|
|
|
)
|
|
|
|
);
|
2010-09-27 22:26:36 +02:00
|
|
|
}
|
|
|
|
|
2011-06-08 18:49:27 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds the "Site Name" menu.
|
2011-06-08 18:49:27 +02:00
|
|
|
*
|
2011-09-16 07:01:54 +02:00
|
|
|
* @since 3.3.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2011-06-08 18:49:27 +02:00
|
|
|
*/
|
2011-10-07 21:52:26 +02:00
|
|
|
function wp_admin_bar_site_menu( $wp_admin_bar ) {
|
2011-11-06 13:21:12 +01:00
|
|
|
// Don't show for logged out users.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! is_user_logged_in() ) {
|
2011-09-16 12:46:12 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-09-16 12:46:12 +02:00
|
|
|
|
2011-11-06 13:21:12 +01:00
|
|
|
// Show only when the user is a member of this site, or they're a super admin.
|
2016-12-04 22:21:42 +01:00
|
|
|
if ( ! is_user_member_of_blog() && ! current_user_can( 'manage_network' ) ) {
|
2011-11-06 13:21:12 +01:00
|
|
|
return;
|
2016-12-04 22:21:42 +01:00
|
|
|
}
|
2011-11-06 13:21:12 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$blogname = get_bloginfo( 'name' );
|
2011-06-11 01:01:45 +02:00
|
|
|
|
2014-11-28 09:13:24 +01:00
|
|
|
if ( ! $blogname ) {
|
2011-09-16 07:01:54 +02:00
|
|
|
$blogname = preg_replace( '#^(https?://)?(www.)?#', '', get_home_url() );
|
2014-11-28 09:13:24 +01:00
|
|
|
}
|
2011-09-16 07:01:54 +02:00
|
|
|
|
2011-10-07 21:52:26 +02:00
|
|
|
if ( is_network_admin() ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Site title. */
|
2016-10-19 06:47:30 +02:00
|
|
|
$blogname = sprintf( __( 'Network Admin: %s' ), esc_html( get_network()->site_name ) );
|
2011-10-07 21:52:26 +02:00
|
|
|
} elseif ( is_user_admin() ) {
|
2019-09-03 02:41:05 +02:00
|
|
|
/* translators: %s: Site title. */
|
2016-10-19 06:47:30 +02:00
|
|
|
$blogname = sprintf( __( 'User Dashboard: %s' ), esc_html( get_network()->site_name ) );
|
2011-10-07 21:52:26 +02:00
|
|
|
}
|
|
|
|
|
2013-05-09 02:22:02 +02:00
|
|
|
$title = wp_html_excerpt( $blogname, 40, '…' );
|
2011-09-16 07:01:54 +02:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'site-name',
|
|
|
|
'title' => $title,
|
|
|
|
'href' => ( is_admin() || ! current_user_can( 'read' ) ) ? home_url( '/' ) : admin_url(),
|
|
|
|
)
|
|
|
|
);
|
2011-09-16 07:01:54 +02:00
|
|
|
|
2011-10-07 21:52:26 +02:00
|
|
|
// Create submenu items.
|
2011-09-16 07:01:54 +02:00
|
|
|
|
2011-10-07 21:52:26 +02:00
|
|
|
if ( is_admin() ) {
|
|
|
|
// Add an option to visit the site.
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'site-name',
|
|
|
|
'id' => 'view-site',
|
|
|
|
'title' => __( 'Visit Site' ),
|
|
|
|
'href' => home_url( '/' ),
|
|
|
|
)
|
|
|
|
);
|
2011-09-16 07:01:54 +02:00
|
|
|
|
2012-02-07 19:35:29 +01:00
|
|
|
if ( is_blog_admin() && is_multisite() && current_user_can( 'manage_sites' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'site-name',
|
|
|
|
'id' => 'edit-site',
|
|
|
|
'title' => __( 'Edit Site' ),
|
|
|
|
'href' => network_admin_url( 'site-info.php?id=' . get_current_blog_id() ),
|
|
|
|
)
|
|
|
|
);
|
2012-02-07 19:35:29 +01:00
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( current_user_can( 'read' ) ) {
|
2012-02-07 19:35:29 +01:00
|
|
|
// We're on the front end, link to the Dashboard.
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'site-name',
|
|
|
|
'id' => 'dashboard',
|
|
|
|
'title' => __( 'Dashboard' ),
|
|
|
|
'href' => admin_url(),
|
|
|
|
)
|
|
|
|
);
|
2011-09-16 07:01:54 +02:00
|
|
|
|
2011-11-04 14:52:42 +01:00
|
|
|
// Add the appearance submenu items.
|
2011-10-18 00:06:31 +02:00
|
|
|
wp_admin_bar_appearance_menu( $wp_admin_bar );
|
2011-06-09 13:16:07 +02:00
|
|
|
}
|
2011-06-08 18:49:27 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 04:43:59 +01:00
|
|
|
/**
|
|
|
|
* Adds the "Edit site" link to the Toolbar.
|
|
|
|
*
|
|
|
|
* @since 5.9.0
|
|
|
|
*
|
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
|
|
|
*/
|
|
|
|
function wp_admin_bar_edit_site_menu( $wp_admin_bar ) {
|
|
|
|
// Don't show if a block theme is not activated.
|
2021-12-07 01:02:02 +01:00
|
|
|
if ( ! wp_is_block_theme() ) {
|
2021-11-15 04:43:59 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't show for users who can't edit theme options or when in the admin.
|
|
|
|
if ( ! current_user_can( 'edit_theme_options' ) || is_admin() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$wp_admin_bar->add_node(
|
|
|
|
array(
|
|
|
|
'id' => 'site-editor',
|
|
|
|
'title' => __( 'Edit site' ),
|
|
|
|
'href' => admin_url( 'site-editor.php' ),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-07-08 22:03:24 +02:00
|
|
|
/**
|
2015-07-13 21:58:25 +02:00
|
|
|
* Adds the "Customize" link to the Toolbar.
|
2015-07-08 22:03:24 +02:00
|
|
|
*
|
|
|
|
* @since 4.3.0
|
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
Customize: Implement customized state persistence with changesets.
Includes infrastructure developed in the Customize Snapshots feature plugin.
See https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/
Props westonruter, valendesigns, utkarshpatel, stubgo, lgedeon, ocean90, ryankienstra, mihai2u, dlh, aaroncampbell, jonathanbardo, jorbin.
See #28721.
See #31089.
Fixes #30937.
Fixes #31517.
Fixes #30028.
Fixes #23225.
Fixes #34142.
Fixes #36485.
Built from https://develop.svn.wordpress.org/trunk@38810
git-svn-id: http://core.svn.wordpress.org/trunk@38753 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-18 22:05:31 +02:00
|
|
|
* @global WP_Customize_Manager $wp_customize
|
2015-07-08 22:03:24 +02:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_customize_menu( $wp_admin_bar ) {
|
Customize: Implement customized state persistence with changesets.
Includes infrastructure developed in the Customize Snapshots feature plugin.
See https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/
Props westonruter, valendesigns, utkarshpatel, stubgo, lgedeon, ocean90, ryankienstra, mihai2u, dlh, aaroncampbell, jonathanbardo, jorbin.
See #28721.
See #31089.
Fixes #30937.
Fixes #31517.
Fixes #30028.
Fixes #23225.
Fixes #34142.
Fixes #36485.
Built from https://develop.svn.wordpress.org/trunk@38810
git-svn-id: http://core.svn.wordpress.org/trunk@38753 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-18 22:05:31 +02:00
|
|
|
global $wp_customize;
|
|
|
|
|
2021-12-25 04:17:04 +01:00
|
|
|
// Don't show if a block theme is activated and no plugins use the customizer.
|
|
|
|
if ( wp_is_block_theme() && ! has_action( 'customize_register' ) ) {
|
2021-11-15 04:43:59 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-09 21:19:24 +02:00
|
|
|
// Don't show for users who can't access the customizer or when in the admin.
|
|
|
|
if ( ! current_user_can( 'customize' ) || is_admin() ) {
|
2015-07-08 22:03:24 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
Customize: Implement customized state persistence with changesets.
Includes infrastructure developed in the Customize Snapshots feature plugin.
See https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/
Props westonruter, valendesigns, utkarshpatel, stubgo, lgedeon, ocean90, ryankienstra, mihai2u, dlh, aaroncampbell, jonathanbardo, jorbin.
See #28721.
See #31089.
Fixes #30937.
Fixes #31517.
Fixes #30028.
Fixes #23225.
Fixes #34142.
Fixes #36485.
Built from https://develop.svn.wordpress.org/trunk@38810
git-svn-id: http://core.svn.wordpress.org/trunk@38753 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-18 22:05:31 +02:00
|
|
|
// Don't show if the user cannot edit a given customize_changeset post currently being previewed.
|
2020-06-29 12:33:08 +02:00
|
|
|
if ( is_customize_preview() && $wp_customize->changeset_post_id()
|
|
|
|
&& ! current_user_can( get_post_type_object( 'customize_changeset' )->cap->edit_post, $wp_customize->changeset_post_id() )
|
|
|
|
) {
|
Customize: Implement customized state persistence with changesets.
Includes infrastructure developed in the Customize Snapshots feature plugin.
See https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/
Props westonruter, valendesigns, utkarshpatel, stubgo, lgedeon, ocean90, ryankienstra, mihai2u, dlh, aaroncampbell, jonathanbardo, jorbin.
See #28721.
See #31089.
Fixes #30937.
Fixes #31517.
Fixes #30028.
Fixes #23225.
Fixes #34142.
Fixes #36485.
Built from https://develop.svn.wordpress.org/trunk@38810
git-svn-id: http://core.svn.wordpress.org/trunk@38753 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-18 22:05:31 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-08 22:03:24 +02:00
|
|
|
$current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
Customize: Implement customized state persistence with changesets.
Includes infrastructure developed in the Customize Snapshots feature plugin.
See https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/
Props westonruter, valendesigns, utkarshpatel, stubgo, lgedeon, ocean90, ryankienstra, mihai2u, dlh, aaroncampbell, jonathanbardo, jorbin.
See #28721.
See #31089.
Fixes #30937.
Fixes #31517.
Fixes #30028.
Fixes #23225.
Fixes #34142.
Fixes #36485.
Built from https://develop.svn.wordpress.org/trunk@38810
git-svn-id: http://core.svn.wordpress.org/trunk@38753 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-18 22:05:31 +02:00
|
|
|
if ( is_customize_preview() && $wp_customize->changeset_uuid() ) {
|
|
|
|
$current_url = remove_query_arg( 'customize_changeset_uuid', $current_url );
|
|
|
|
}
|
|
|
|
|
2015-07-08 22:03:24 +02:00
|
|
|
$customize_url = add_query_arg( 'url', urlencode( $current_url ), wp_customize_url() );
|
Customize: Implement customized state persistence with changesets.
Includes infrastructure developed in the Customize Snapshots feature plugin.
See https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/
Props westonruter, valendesigns, utkarshpatel, stubgo, lgedeon, ocean90, ryankienstra, mihai2u, dlh, aaroncampbell, jonathanbardo, jorbin.
See #28721.
See #31089.
Fixes #30937.
Fixes #31517.
Fixes #30028.
Fixes #23225.
Fixes #34142.
Fixes #36485.
Built from https://develop.svn.wordpress.org/trunk@38810
git-svn-id: http://core.svn.wordpress.org/trunk@38753 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-18 22:05:31 +02:00
|
|
|
if ( is_customize_preview() ) {
|
|
|
|
$customize_url = add_query_arg( array( 'changeset_uuid' => $wp_customize->changeset_uuid() ), $customize_url );
|
|
|
|
}
|
2015-07-08 22:03:24 +02:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'customize',
|
|
|
|
'title' => __( 'Customize' ),
|
|
|
|
'href' => $customize_url,
|
|
|
|
'meta' => array(
|
|
|
|
'class' => 'hide-if-no-customize',
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
2015-07-08 22:03:24 +02:00
|
|
|
add_action( 'wp_before_admin_bar_render', 'wp_customize_support_script' );
|
|
|
|
}
|
|
|
|
|
2010-09-27 22:26:36 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds the "My Sites/[Site Name]" menu and all submenus.
|
2010-10-28 10:31:36 +02:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_my_sites_menu( $wp_admin_bar ) {
|
2011-10-05 20:45:32 +02:00
|
|
|
// Don't show for logged out users or single site mode.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! is_user_logged_in() || ! is_multisite() ) {
|
2011-10-05 20:45:32 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-09-17 03:11:52 +02:00
|
|
|
|
2011-11-06 13:21:12 +01:00
|
|
|
// Show only when the user has at least one site, or they're a super admin.
|
2016-12-04 22:21:42 +01:00
|
|
|
if ( count( $wp_admin_bar->user->blogs ) < 1 && ! current_user_can( 'manage_network' ) ) {
|
2011-10-05 20:45:32 +02:00
|
|
|
return;
|
2016-12-04 22:21:42 +01:00
|
|
|
}
|
2011-09-17 03:11:52 +02:00
|
|
|
|
2015-04-02 07:27:30 +02:00
|
|
|
if ( $wp_admin_bar->user->active_blog ) {
|
|
|
|
$my_sites_url = get_admin_url( $wp_admin_bar->user->active_blog->blog_id, 'my-sites.php' );
|
|
|
|
} else {
|
|
|
|
$my_sites_url = admin_url( 'my-sites.php' );
|
|
|
|
}
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'my-sites',
|
|
|
|
'title' => __( 'My Sites' ),
|
|
|
|
'href' => $my_sites_url,
|
|
|
|
)
|
|
|
|
);
|
2011-09-17 03:11:52 +02:00
|
|
|
|
2016-12-04 22:21:42 +01:00
|
|
|
if ( current_user_can( 'manage_network' ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$wp_admin_bar->add_group(
|
|
|
|
array(
|
|
|
|
'parent' => 'my-sites',
|
|
|
|
'id' => 'my-sites-super-admin',
|
|
|
|
)
|
|
|
|
);
|
2017-01-24 17:29:40 +01:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'my-sites-super-admin',
|
|
|
|
'id' => 'network-admin',
|
|
|
|
'title' => __( 'Network Admin' ),
|
|
|
|
'href' => network_admin_url(),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
2017-01-24 17:29:40 +01:00
|
|
|
'parent' => 'network-admin',
|
2017-12-01 00:11:00 +01:00
|
|
|
'id' => 'network-admin-d',
|
|
|
|
'title' => __( 'Dashboard' ),
|
|
|
|
'href' => network_admin_url(),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( current_user_can( 'manage_sites' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'network-admin',
|
|
|
|
'id' => 'network-admin-s',
|
|
|
|
'title' => __( 'Sites' ),
|
|
|
|
'href' => network_admin_url( 'sites.php' ),
|
|
|
|
)
|
|
|
|
);
|
2017-01-24 17:29:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( current_user_can( 'manage_network_users' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'network-admin',
|
|
|
|
'id' => 'network-admin-u',
|
|
|
|
'title' => __( 'Users' ),
|
|
|
|
'href' => network_admin_url( 'users.php' ),
|
|
|
|
)
|
|
|
|
);
|
2017-01-24 17:29:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( current_user_can( 'manage_network_themes' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'network-admin',
|
|
|
|
'id' => 'network-admin-t',
|
|
|
|
'title' => __( 'Themes' ),
|
|
|
|
'href' => network_admin_url( 'themes.php' ),
|
|
|
|
)
|
|
|
|
);
|
2017-01-24 17:29:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( current_user_can( 'manage_network_plugins' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'network-admin',
|
|
|
|
'id' => 'network-admin-p',
|
|
|
|
'title' => __( 'Plugins' ),
|
|
|
|
'href' => network_admin_url( 'plugins.php' ),
|
|
|
|
)
|
|
|
|
);
|
2017-01-24 17:29:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( current_user_can( 'manage_network_options' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'network-admin',
|
|
|
|
'id' => 'network-admin-o',
|
|
|
|
'title' => __( 'Settings' ),
|
|
|
|
'href' => network_admin_url( 'settings.php' ),
|
|
|
|
)
|
|
|
|
);
|
2017-01-24 17:29:40 +01:00
|
|
|
}
|
2011-10-05 20:45:32 +02:00
|
|
|
}
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Add site links.
|
2017-12-01 00:11:00 +01:00
|
|
|
$wp_admin_bar->add_group(
|
|
|
|
array(
|
|
|
|
'parent' => 'my-sites',
|
|
|
|
'id' => 'my-sites-list',
|
|
|
|
'meta' => array(
|
|
|
|
'class' => current_user_can( 'manage_network' ) ? 'ab-sub-secondary' : '',
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
2011-11-23 22:46:47 +01:00
|
|
|
|
2022-04-08 00:14:05 +02:00
|
|
|
/**
|
|
|
|
* Filters whether to show the site icons in toolbar.
|
|
|
|
*
|
|
|
|
* Returning false to this hook is the recommended way to hide site icons in the toolbar.
|
|
|
|
* A truthy return may have negative performance impact on large multisites.
|
|
|
|
*
|
|
|
|
* @since 6.0.0
|
|
|
|
*
|
|
|
|
* @param bool $show_site_icons Whether site icons should be shown in the toolbar. Default true.
|
|
|
|
*/
|
|
|
|
$show_site_icons = apply_filters( 'wp_admin_bar_show_site_icons', true );
|
|
|
|
|
2011-10-05 20:45:32 +02:00
|
|
|
foreach ( (array) $wp_admin_bar->user->blogs as $blog ) {
|
2012-08-09 18:28:15 +02:00
|
|
|
switch_to_blog( $blog->userblog_id );
|
|
|
|
|
2022-04-08 00:14:05 +02:00
|
|
|
if ( true === $show_site_icons && has_site_icon() ) {
|
2021-05-10 20:24:01 +02:00
|
|
|
$blavatar = sprintf(
|
2022-04-08 00:14:05 +02:00
|
|
|
'<img class="blavatar" src="%s" srcset="%s 2x" alt="" width="16" height="16"%s />',
|
2021-05-10 20:24:01 +02:00
|
|
|
esc_url( get_site_icon_url( 16 ) ),
|
2022-04-08 00:14:05 +02:00
|
|
|
esc_url( get_site_icon_url( 32 ) ),
|
|
|
|
( wp_lazy_loading_enabled( 'img', 'site_icon_in_toolbar' ) ? ' loading="lazy"' : '' )
|
2021-05-10 20:24:01 +02:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$blavatar = '<div class="blavatar"></div>';
|
|
|
|
}
|
2011-10-05 20:45:32 +02:00
|
|
|
|
2014-11-28 09:13:24 +01:00
|
|
|
$blogname = $blog->blogname;
|
|
|
|
|
|
|
|
if ( ! $blogname ) {
|
|
|
|
$blogname = preg_replace( '#^(https?://)?(www.)?#', '', get_home_url() );
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$menu_id = 'blog-' . $blog->userblog_id;
|
2011-09-26 01:30:40 +02:00
|
|
|
|
2017-10-09 17:22:46 +02:00
|
|
|
if ( current_user_can( 'read' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'my-sites-list',
|
|
|
|
'id' => $menu_id,
|
|
|
|
'title' => $blavatar . $blogname,
|
|
|
|
'href' => admin_url(),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => $menu_id,
|
|
|
|
'id' => $menu_id . '-d',
|
|
|
|
'title' => __( 'Dashboard' ),
|
|
|
|
'href' => admin_url(),
|
|
|
|
)
|
|
|
|
);
|
2017-10-09 17:22:46 +02:00
|
|
|
} else {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'my-sites-list',
|
|
|
|
'id' => $menu_id,
|
|
|
|
'title' => $blavatar . $blogname,
|
|
|
|
'href' => home_url(),
|
|
|
|
)
|
|
|
|
);
|
2017-10-09 17:22:46 +02:00
|
|
|
}
|
2011-10-05 20:45:32 +02:00
|
|
|
|
2012-11-28 23:28:20 +01:00
|
|
|
if ( current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => $menu_id,
|
|
|
|
'id' => $menu_id . '-n',
|
2018-08-29 17:50:25 +02:00
|
|
|
'title' => get_post_type_object( 'post' )->labels->new_item,
|
2017-12-01 00:11:00 +01:00
|
|
|
'href' => admin_url( 'post-new.php' ),
|
|
|
|
)
|
|
|
|
);
|
2012-11-28 23:28:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( current_user_can( 'edit_posts' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => $menu_id,
|
|
|
|
'id' => $menu_id . '-c',
|
|
|
|
'title' => __( 'Manage Comments' ),
|
|
|
|
'href' => admin_url( 'edit-comments.php' ),
|
|
|
|
)
|
|
|
|
);
|
2011-09-16 09:18:05 +02:00
|
|
|
}
|
2011-10-05 20:45:32 +02:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => $menu_id,
|
|
|
|
'id' => $menu_id . '-v',
|
|
|
|
'title' => __( 'Visit Site' ),
|
|
|
|
'href' => home_url( '/' ),
|
|
|
|
)
|
|
|
|
);
|
2012-08-09 18:28:15 +02:00
|
|
|
|
|
|
|
restore_current_blog();
|
2010-09-27 22:26:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Provides a shortlink.
|
2010-11-17 19:47:34 +01:00
|
|
|
*
|
2010-10-28 10:31:36 +02:00
|
|
|
* @since 3.1.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_shortlink_menu( $wp_admin_bar ) {
|
2010-10-29 15:58:14 +02:00
|
|
|
$short = wp_get_shortlink( 0, 'query' );
|
2017-12-01 00:11:00 +01:00
|
|
|
$id = 'get-shortlink';
|
2010-10-29 17:17:22 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $short ) ) {
|
2011-01-11 23:45:14 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-02-09 18:35:36 +01:00
|
|
|
|
2022-07-21 11:04:14 +02:00
|
|
|
$html = '<input class="shortlink-input" type="text" readonly="readonly" value="' . esc_attr( $short ) . '" aria-label="' . __( 'Shortlink' ) . '" />';
|
2011-02-09 18:35:36 +01:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => $id,
|
|
|
|
'title' => __( 'Shortlink' ),
|
|
|
|
'href' => $short,
|
|
|
|
'meta' => array( 'html' => $html ),
|
|
|
|
)
|
|
|
|
);
|
2010-09-27 22:26:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Provides an edit link for posts and terms.
|
2010-11-17 19:47:34 +01:00
|
|
|
*
|
2010-10-28 10:31:36 +02:00
|
|
|
* @since 3.1.0
|
2021-03-07 12:56:07 +01:00
|
|
|
* @since 5.5.0 Added a "View Post" link on Comments screen for a single post.
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2015-10-10 17:45:25 +02:00
|
|
|
* @global WP_Term $tag
|
2019-08-04 03:59:56 +02:00
|
|
|
* @global WP_Query $wp_the_query WordPress Query object.
|
2019-01-15 00:12:50 +01:00
|
|
|
* @global int $user_id The ID of the user being edited. Not to be confused with the
|
|
|
|
* global $user_ID, which contains the ID of the current user.
|
2020-06-03 23:27:09 +02:00
|
|
|
* @global int $post_id The ID of the post when editing comments for a single post.
|
2015-05-22 06:00:26 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_edit_menu( $wp_admin_bar ) {
|
2020-06-03 21:57:10 +02:00
|
|
|
global $tag, $wp_the_query, $user_id, $post_id;
|
2011-06-08 18:49:27 +02:00
|
|
|
|
|
|
|
if ( is_admin() ) {
|
2020-06-03 21:57:10 +02:00
|
|
|
$current_screen = get_current_screen();
|
|
|
|
$post = get_post();
|
|
|
|
$post_type_object = null;
|
2020-05-16 20:42:12 +02:00
|
|
|
|
|
|
|
if ( 'post' === $current_screen->base ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$post_type_object = get_post_type_object( $post->post_type );
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'edit' === $current_screen->base ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$post_type_object = get_post_type_object( $current_screen->post_type );
|
2020-06-03 21:57:10 +02:00
|
|
|
} elseif ( 'edit-comments' === $current_screen->base && $post_id ) {
|
|
|
|
$post = get_post( $post_id );
|
|
|
|
if ( $post ) {
|
|
|
|
$post_type_object = get_post_type_object( $post->post_type );
|
|
|
|
}
|
2019-07-03 01:42:58 +02:00
|
|
|
}
|
2011-06-08 18:49:27 +02:00
|
|
|
|
2020-06-03 21:57:10 +02:00
|
|
|
if ( ( 'post' === $current_screen->base || 'edit-comments' === $current_screen->base )
|
2020-05-16 20:42:12 +02:00
|
|
|
&& 'add' !== $current_screen->action
|
2019-07-03 01:42:58 +02:00
|
|
|
&& ( $post_type_object )
|
2013-07-08 22:05:42 +02:00
|
|
|
&& current_user_can( 'read_post', $post->ID )
|
2012-09-23 20:39:03 +02:00
|
|
|
&& ( $post_type_object->public )
|
2017-12-01 00:11:00 +01:00
|
|
|
&& ( $post_type_object->show_in_admin_bar ) ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'draft' === $post->post_status ) {
|
2016-03-10 06:37:27 +01:00
|
|
|
$preview_link = get_preview_post_link( $post );
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'preview',
|
|
|
|
'title' => $post_type_object->labels->view_item,
|
|
|
|
'href' => esc_url( $preview_link ),
|
|
|
|
'meta' => array( 'target' => 'wp-preview-' . $post->ID ),
|
|
|
|
)
|
|
|
|
);
|
2014-06-30 12:02:16 +02:00
|
|
|
} else {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'view',
|
|
|
|
'title' => $post_type_object->labels->view_item,
|
|
|
|
'href' => get_permalink( $post->ID ),
|
|
|
|
)
|
|
|
|
);
|
2014-06-30 12:02:16 +02:00
|
|
|
}
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'edit' === $current_screen->base
|
2019-07-03 01:42:58 +02:00
|
|
|
&& ( $post_type_object )
|
2017-12-01 00:11:00 +01:00
|
|
|
&& ( $post_type_object->public )
|
|
|
|
&& ( $post_type_object->show_in_admin_bar )
|
|
|
|
&& ( get_post_type_archive_link( $post_type_object->name ) )
|
|
|
|
&& ! ( 'post' === $post_type_object->name && 'posts' === get_option( 'show_on_front' ) ) ) {
|
|
|
|
$wp_admin_bar->add_node(
|
|
|
|
array(
|
|
|
|
'id' => 'archive',
|
|
|
|
'title' => $post_type_object->labels->view_items,
|
|
|
|
'href' => get_post_type_archive_link( $current_screen->post_type ),
|
|
|
|
)
|
|
|
|
);
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'term' === $current_screen->base && isset( $tag ) && is_object( $tag ) && ! is_wp_error( $tag ) ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$tax = get_taxonomy( $tag->taxonomy );
|
2022-08-14 00:44:09 +02:00
|
|
|
if ( is_term_publicly_viewable( $tag ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2019-07-03 01:42:58 +02:00
|
|
|
array(
|
|
|
|
'id' => 'view',
|
|
|
|
'title' => $tax->labels->view_item,
|
|
|
|
'href' => get_term_link( $tag ),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2020-05-16 20:42:12 +02:00
|
|
|
} elseif ( 'user-edit' === $current_screen->base && isset( $user_id ) ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$user_object = get_userdata( $user_id );
|
|
|
|
$view_link = get_author_posts_url( $user_object->ID );
|
|
|
|
if ( $user_object->exists() && $view_link ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2019-07-03 01:42:58 +02:00
|
|
|
array(
|
|
|
|
'id' => 'view',
|
|
|
|
'title' => __( 'View User' ),
|
|
|
|
'href' => $view_link,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2011-06-08 18:49:27 +02:00
|
|
|
}
|
|
|
|
} else {
|
2011-09-30 20:07:14 +02:00
|
|
|
$current_object = $wp_the_query->get_queried_object();
|
2011-06-08 18:49:27 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $current_object ) ) {
|
2011-06-08 18:49:27 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-06-08 18:49:27 +02:00
|
|
|
|
2019-07-03 01:42:58 +02:00
|
|
|
if ( ! empty( $current_object->post_type ) ) {
|
|
|
|
$post_type_object = get_post_type_object( $current_object->post_type );
|
|
|
|
$edit_post_link = get_edit_post_link( $current_object->ID );
|
|
|
|
if ( $post_type_object
|
|
|
|
&& $edit_post_link
|
|
|
|
&& current_user_can( 'edit_post', $current_object->ID )
|
|
|
|
&& $post_type_object->show_in_admin_bar ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2019-07-03 01:42:58 +02:00
|
|
|
array(
|
|
|
|
'id' => 'edit',
|
|
|
|
'title' => $post_type_object->labels->edit_item,
|
|
|
|
'href' => $edit_post_link,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} elseif ( ! empty( $current_object->taxonomy ) ) {
|
|
|
|
$tax = get_taxonomy( $current_object->taxonomy );
|
|
|
|
$edit_term_link = get_edit_term_link( $current_object->term_id, $current_object->taxonomy );
|
|
|
|
if ( $tax && $edit_term_link && current_user_can( 'edit_term', $current_object->term_id ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2019-07-03 01:42:58 +02:00
|
|
|
array(
|
|
|
|
'id' => 'edit',
|
|
|
|
'title' => $tax->labels->edit_item,
|
|
|
|
'href' => $edit_term_link,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} elseif ( is_a( $current_object, 'WP_User' ) && current_user_can( 'edit_user', $current_object->ID ) ) {
|
|
|
|
$edit_user_link = get_edit_user_link( $current_object->ID );
|
|
|
|
if ( $edit_user_link ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2019-07-03 01:42:58 +02:00
|
|
|
array(
|
|
|
|
'id' => 'edit',
|
|
|
|
'title' => __( 'Edit User' ),
|
|
|
|
'href' => $edit_user_link,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2011-06-08 18:49:27 +02:00
|
|
|
}
|
2010-10-28 10:31:36 +02:00
|
|
|
}
|
2010-09-27 22:26:36 +02:00
|
|
|
}
|
|
|
|
|
2010-12-13 21:35:28 +01:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds "Add New" menu.
|
2010-12-13 21:35:28 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-12-13 21:35:28 +01:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_new_content_menu( $wp_admin_bar ) {
|
2011-11-09 20:12:48 +01:00
|
|
|
$actions = array();
|
2011-09-27 05:53:43 +02:00
|
|
|
|
2011-10-10 20:40:00 +02:00
|
|
|
$cpts = (array) get_post_types( array( 'show_in_admin_bar' => true ), 'objects' );
|
2010-12-13 21:35:28 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $cpts['post'] ) && current_user_can( $cpts['post']->cap->create_posts ) ) {
|
|
|
|
$actions['post-new.php'] = array( $cpts['post']->labels->name_admin_bar, 'new-post' );
|
|
|
|
}
|
2010-10-29 17:17:22 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $cpts['attachment'] ) && current_user_can( 'upload_files' ) ) {
|
|
|
|
$actions['media-new.php'] = array( $cpts['attachment']->labels->name_admin_bar, 'new-media' );
|
|
|
|
}
|
2011-05-06 21:29:54 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( current_user_can( 'manage_links' ) ) {
|
|
|
|
$actions['link-add.php'] = array( _x( 'Link', 'add new from admin bar' ), 'new-link' );
|
|
|
|
}
|
2011-05-06 21:29:54 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $cpts['page'] ) && current_user_can( $cpts['page']->cap->create_posts ) ) {
|
|
|
|
$actions['post-new.php?post_type=page'] = array( $cpts['page']->labels->name_admin_bar, 'new-page' );
|
|
|
|
}
|
2012-09-22 00:52:54 +02:00
|
|
|
|
|
|
|
unset( $cpts['post'], $cpts['page'], $cpts['attachment'] );
|
2011-10-10 20:40:00 +02:00
|
|
|
|
|
|
|
// Add any additional custom post types.
|
|
|
|
foreach ( $cpts as $cpt ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! current_user_can( $cpt->cap->create_posts ) ) {
|
2011-10-10 20:40:00 +02:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-05-06 21:29:54 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$key = 'post-new.php?post_type=' . $cpt->name;
|
2011-11-09 20:12:48 +01:00
|
|
|
$actions[ $key ] = array( $cpt->labels->name_admin_bar, 'new-' . $cpt->name );
|
2011-10-10 20:40:00 +02:00
|
|
|
}
|
2012-07-10 22:46:22 +02:00
|
|
|
// Avoid clash with parent node and a 'content' post type.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $actions['post-new.php?post_type=content'] ) ) {
|
2012-07-10 22:46:22 +02:00
|
|
|
$actions['post-new.php?post_type=content'][1] = 'add-new-content';
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-05-06 21:29:54 +02:00
|
|
|
|
2017-05-07 19:42:45 +02:00
|
|
|
if ( current_user_can( 'create_users' ) || ( is_multisite() && current_user_can( 'promote_users' ) ) ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$actions['user-new.php'] = array( _x( 'User', 'add new from admin bar' ), 'new-user' );
|
2017-05-07 19:42:45 +02:00
|
|
|
}
|
2011-06-11 01:01:45 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $actions ) {
|
2010-10-29 17:17:22 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-29 17:17:22 +02:00
|
|
|
|
2021-05-01 00:55:06 +02:00
|
|
|
$title = '<span class="ab-icon" aria-hidden="true"></span><span class="ab-label">' . _x( 'New', 'admin bar menu group label' ) . '</span>';
|
2011-12-01 03:53:44 +01:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'new-content',
|
|
|
|
'title' => $title,
|
|
|
|
'href' => admin_url( current( array_keys( $actions ) ) ),
|
|
|
|
)
|
|
|
|
);
|
2011-09-27 05:53:43 +02:00
|
|
|
|
2011-11-09 20:12:48 +01:00
|
|
|
foreach ( $actions as $link => $action ) {
|
|
|
|
list( $title, $id ) = $action;
|
2010-10-29 17:17:22 +02:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'new-content',
|
|
|
|
'id' => $id,
|
|
|
|
'title' => $title,
|
|
|
|
'href' => admin_url( $link ),
|
|
|
|
)
|
|
|
|
);
|
2010-10-29 17:17:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-13 21:35:28 +01:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds edit comments link with awaiting moderation count bubble.
|
2010-12-13 21:35:28 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-12-13 21:35:28 +01:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_comments_menu( $wp_admin_bar ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! current_user_can( 'edit_posts' ) ) {
|
2010-10-29 17:17:22 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-29 17:17:22 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$awaiting_mod = wp_count_comments();
|
|
|
|
$awaiting_mod = $awaiting_mod->moderated;
|
2019-03-18 16:22:53 +01:00
|
|
|
$awaiting_text = sprintf(
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
/* translators: Hidden accessibility text. %s: Number of comments. */
|
2019-03-18 16:22:53 +01:00
|
|
|
_n( '%s Comment in moderation', '%s Comments in moderation', $awaiting_mod ),
|
|
|
|
number_format_i18n( $awaiting_mod )
|
|
|
|
);
|
2011-09-16 07:01:54 +02:00
|
|
|
|
2021-05-01 00:55:06 +02:00
|
|
|
$icon = '<span class="ab-icon" aria-hidden="true"></span>';
|
2017-12-01 00:11:00 +01:00
|
|
|
$title = '<span class="ab-label awaiting-mod pending-count count-' . $awaiting_mod . '" aria-hidden="true">' . number_format_i18n( $awaiting_mod ) . '</span>';
|
2019-03-18 16:22:53 +01:00
|
|
|
$title .= '<span class="screen-reader-text comments-in-moderation-text">' . $awaiting_text . '</span>';
|
2010-10-29 17:17:22 +02:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'comments',
|
|
|
|
'title' => $icon . $title,
|
|
|
|
'href' => admin_url( 'edit-comments.php' ),
|
|
|
|
)
|
|
|
|
);
|
2010-10-29 17:17:22 +02:00
|
|
|
}
|
|
|
|
|
2010-12-13 21:35:28 +01:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds appearance submenu items to the "Site Name" menu.
|
2010-12-13 21:35:28 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-12-13 21:35:28 +01:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_appearance_menu( $wp_admin_bar ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$wp_admin_bar->add_group(
|
|
|
|
array(
|
|
|
|
'parent' => 'site-name',
|
|
|
|
'id' => 'appearance',
|
|
|
|
)
|
|
|
|
);
|
2011-11-24 00:01:20 +01:00
|
|
|
|
2015-02-24 21:31:24 +01:00
|
|
|
if ( current_user_can( 'switch_themes' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'appearance',
|
|
|
|
'id' => 'themes',
|
|
|
|
'title' => __( 'Themes' ),
|
|
|
|
'href' => admin_url( 'themes.php' ),
|
|
|
|
)
|
|
|
|
);
|
2014-07-14 21:01:16 +02:00
|
|
|
}
|
2012-05-01 14:47:46 +02:00
|
|
|
|
2015-02-24 21:31:24 +01:00
|
|
|
if ( ! current_user_can( 'edit_theme_options' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( current_theme_supports( 'widgets' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'appearance',
|
|
|
|
'id' => 'widgets',
|
|
|
|
'title' => __( 'Widgets' ),
|
|
|
|
'href' => admin_url( 'widgets.php' ),
|
|
|
|
)
|
|
|
|
);
|
2015-01-13 08:45:22 +01:00
|
|
|
}
|
2010-10-29 17:26:36 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'appearance',
|
|
|
|
'id' => 'menus',
|
|
|
|
'title' => __( 'Menus' ),
|
|
|
|
'href' => admin_url( 'nav-menus.php' ),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2011-04-28 00:06:01 +02:00
|
|
|
|
2014-11-20 16:29:23 +01:00
|
|
|
if ( current_theme_supports( 'custom-background' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'appearance',
|
|
|
|
'id' => 'background',
|
|
|
|
'title' => __( 'Background' ),
|
|
|
|
'href' => admin_url( 'themes.php?page=custom-background' ),
|
|
|
|
'meta' => array(
|
|
|
|
'class' => 'hide-if-customize',
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
2014-11-20 16:29:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( current_theme_supports( 'custom-header' ) ) {
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'appearance',
|
|
|
|
'id' => 'header',
|
|
|
|
'title' => __( 'Header' ),
|
|
|
|
'href' => admin_url( 'themes.php?page=custom-header' ),
|
|
|
|
'meta' => array(
|
|
|
|
'class' => 'hide-if-customize',
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
2014-11-20 16:29:23 +01:00
|
|
|
}
|
2011-04-28 00:06:01 +02:00
|
|
|
|
2010-10-29 17:26:36 +02:00
|
|
|
}
|
|
|
|
|
2010-12-13 21:35:28 +01:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Provides an update link if theme/plugin/core updates are available.
|
2010-12-13 21:35:28 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2010-12-13 21:35:28 +01:00
|
|
|
*/
|
2011-04-19 00:03:34 +02:00
|
|
|
function wp_admin_bar_updates_menu( $wp_admin_bar ) {
|
2010-10-29 17:36:45 +02:00
|
|
|
|
2011-07-26 20:39:57 +02:00
|
|
|
$update_data = wp_get_update_data();
|
2010-10-29 17:36:45 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $update_data['counts']['total'] ) {
|
2011-07-26 20:39:57 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-10-29 17:36:45 +02:00
|
|
|
|
2021-05-01 00:55:06 +02:00
|
|
|
$updates_text = sprintf(
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
/* translators: Hidden accessibility text. %s: Total number of updates available. */
|
2021-05-01 00:55:06 +02:00
|
|
|
_n( '%s update available', '%s updates available', $update_data['counts']['total'] ),
|
|
|
|
number_format_i18n( $update_data['counts']['total'] )
|
|
|
|
);
|
|
|
|
|
|
|
|
$icon = '<span class="ab-icon" aria-hidden="true"></span>';
|
|
|
|
$title = '<span class="ab-label" aria-hidden="true">' . number_format_i18n( $update_data['counts']['total'] ) . '</span>';
|
|
|
|
$title .= '<span class="screen-reader-text updates-available-text">' . $updates_text . '</span>';
|
2010-10-29 17:36:45 +02:00
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'id' => 'updates',
|
2021-05-01 00:55:06 +02:00
|
|
|
'title' => $icon . $title,
|
2017-12-01 00:11:00 +01:00
|
|
|
'href' => network_admin_url( 'update-core.php' ),
|
|
|
|
)
|
|
|
|
);
|
2010-10-29 17:36:45 +02:00
|
|
|
}
|
|
|
|
|
2011-09-16 07:01:54 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds search form.
|
2011-09-16 07:01:54 +02:00
|
|
|
*
|
|
|
|
* @since 3.3.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2011-09-16 07:01:54 +02:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_search_menu( $wp_admin_bar ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_admin() ) {
|
2011-12-01 04:03:12 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-12-01 04:03:12 +01:00
|
|
|
|
2011-11-22 22:25:55 +01:00
|
|
|
$form = '<form action="' . esc_url( home_url( '/' ) ) . '" method="get" id="adminbarsearch">';
|
2012-08-05 20:41:52 +02:00
|
|
|
$form .= '<input class="adminbar-input" name="s" id="adminbar-search" type="text" value="" maxlength="150" />';
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
$form .= '<label for="adminbar-search" class="screen-reader-text">' .
|
|
|
|
/* translators: Hidden accessibility text. */
|
|
|
|
__( 'Search' ) .
|
|
|
|
'</label>';
|
2021-03-20 19:30:08 +01:00
|
|
|
$form .= '<input type="submit" class="adminbar-button" value="' . __( 'Search' ) . '" />';
|
2011-09-16 07:01:54 +02:00
|
|
|
$form .= '</form>';
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
2017-12-01 00:11:00 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'top-secondary',
|
|
|
|
'id' => 'search',
|
|
|
|
'title' => $form,
|
|
|
|
'meta' => array(
|
|
|
|
'class' => 'admin-bar-search',
|
|
|
|
'tabindex' => -1,
|
|
|
|
),
|
2011-11-04 19:11:33 +01:00
|
|
|
)
|
2017-12-01 00:11:00 +01:00
|
|
|
);
|
2011-09-16 07:01:54 +02:00
|
|
|
}
|
|
|
|
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds a link to exit recovery mode when Recovery Mode is active.
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
*
|
|
|
|
* @since 5.2.0
|
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_recovery_mode_menu( $wp_admin_bar ) {
|
|
|
|
if ( ! wp_is_recovery_mode() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = wp_login_url();
|
|
|
|
$url = add_query_arg( 'action', WP_Recovery_Mode::EXIT_ACTION, $url );
|
|
|
|
$url = wp_nonce_url( $url, WP_Recovery_Mode::EXIT_ACTION );
|
|
|
|
|
2019-11-03 23:14:01 +01:00
|
|
|
$wp_admin_bar->add_node(
|
Bootstrap/Load: Introduce a recovery mode for fixing fatal errors.
Using the new fatal handler introduced in [44962], an email is sent to the admin when a fatal error occurs. This email includes a secret link to enter recovery mode. When clicked, the link will be validated and on success a cookie will be placed on the client, enabling recovery mode for that user. This functionality is executed early before plugins and themes are loaded, in order to be unaffected by potential fatal errors these might be causing.
When in recovery mode, broken plugins and themes will be paused for that client, so that they are able to access the admin backend despite of these errors. They are notified about the broken extensions and the errors caused, and can then decide whether they would like to temporarily deactivate the extension or fix the problem and resume the extension.
A link in the admin bar allows the client to exit recovery mode.
Props timothyblynjacobs, afragen, flixos90, nerrad, miss_jwo, schlessera, spacedmonkey, swissspidy.
Fixes #46130, #44458.
Built from https://develop.svn.wordpress.org/trunk@44973
git-svn-id: http://core.svn.wordpress.org/trunk@44804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-21 22:53:51 +01:00
|
|
|
array(
|
|
|
|
'parent' => 'top-secondary',
|
|
|
|
'id' => 'recovery-mode',
|
|
|
|
'title' => __( 'Exit Recovery Mode' ),
|
|
|
|
'href' => $url,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-11-23 22:46:47 +01:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Adds secondary menus.
|
2011-11-23 22:46:47 +01:00
|
|
|
*
|
|
|
|
* @since 3.3.0
|
2013-08-06 21:23:00 +02:00
|
|
|
*
|
2021-10-04 22:46:59 +02:00
|
|
|
* @param WP_Admin_Bar $wp_admin_bar The WP_Admin_Bar instance.
|
2011-11-23 22:46:47 +01:00
|
|
|
*/
|
|
|
|
function wp_admin_bar_add_secondary_groups( $wp_admin_bar ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$wp_admin_bar->add_group(
|
|
|
|
array(
|
|
|
|
'id' => 'top-secondary',
|
|
|
|
'meta' => array(
|
|
|
|
'class' => 'ab-top-secondary',
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$wp_admin_bar->add_group(
|
|
|
|
array(
|
|
|
|
'parent' => 'wp-logo',
|
|
|
|
'id' => 'wp-logo-external',
|
|
|
|
'meta' => array(
|
|
|
|
'class' => 'ab-sub-secondary',
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
2011-11-23 22:46:47 +01:00
|
|
|
}
|
|
|
|
|
2010-09-27 22:26:36 +02:00
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Prints style and scripts for the admin bar.
|
2010-10-28 10:31:36 +02:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function wp_admin_bar_header() {
|
2019-09-18 16:50:56 +02:00
|
|
|
$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';
|
2017-12-01 00:11:00 +01:00
|
|
|
?>
|
2019-09-18 16:50:56 +02:00
|
|
|
<style<?php echo $type_attr; ?> media="print">#wpadminbar { display:none; }</style>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2010-11-30 22:50:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Prints default admin bar callback.
|
2010-11-30 22:50:57 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function _admin_bar_bump_cb() {
|
2019-09-18 16:50:56 +02:00
|
|
|
$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2019-09-18 16:50:56 +02:00
|
|
|
<style<?php echo $type_attr; ?> media="screen">
|
Say hello to a fresh new look for the WordPress admin.
Still to come: more color schemes, a responsive component, and more.
see #25858.
props iammattthomas, tillkruess, EmpireOfLight, melchoyce, ryelle, joen, mitchoyoshitaka, sirbrillig, andypeatling, isaackeyet, Otto42, dd32, matt, helen.
Built from https://develop.svn.wordpress.org/trunk@26072
git-svn-id: http://core.svn.wordpress.org/trunk@25992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-11-10 01:27:10 +01:00
|
|
|
html { margin-top: 32px !important; }
|
|
|
|
@media screen and ( max-width: 782px ) {
|
|
|
|
html { margin-top: 46px !important; }
|
|
|
|
}
|
2011-01-14 18:52:51 +01:00
|
|
|
</style>
|
2018-08-17 03:51:36 +02:00
|
|
|
<?php
|
2010-10-28 10:31:36 +02:00
|
|
|
}
|
2010-09-27 22:26:36 +02:00
|
|
|
|
2010-12-17 22:48:30 +01:00
|
|
|
/**
|
2016-05-23 20:59:27 +02:00
|
|
|
* Sets the display status of the admin bar.
|
2010-12-17 22:48:30 +01:00
|
|
|
*
|
2016-05-23 20:59:27 +02:00
|
|
|
* This can be called immediately upon plugin load. It does not need to be called
|
|
|
|
* from a function hooked to the {@see 'init'} action.
|
2010-12-17 22:48:30 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
2016-02-20 22:27:26 +01:00
|
|
|
* @global bool $show_admin_bar
|
2015-05-22 06:00:26 +02:00
|
|
|
*
|
2010-12-17 22:48:30 +01:00
|
|
|
* @param bool $show Whether to allow the admin bar to show.
|
|
|
|
*/
|
|
|
|
function show_admin_bar( $show ) {
|
|
|
|
global $show_admin_bar;
|
|
|
|
$show_admin_bar = (bool) $show;
|
|
|
|
}
|
|
|
|
|
2010-09-27 22:26:36 +02:00
|
|
|
/**
|
2018-02-13 17:54:31 +01:00
|
|
|
* Determines whether the admin bar should be showing.
|
2018-03-18 15:23:33 +01:00
|
|
|
*
|
2018-02-13 17:54:31 +01:00
|
|
|
* For more information on this and similar theme functions, check out
|
2018-03-18 15:23:33 +01:00
|
|
|
* the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
|
2018-02-13 17:54:31 +01:00
|
|
|
* Conditional Tags} article in the Theme Developer Handbook.
|
2018-03-18 15:23:33 +01:00
|
|
|
*
|
2010-10-28 10:31:36 +02:00
|
|
|
* @since 3.1.0
|
|
|
|
*
|
2016-02-20 22:27:26 +01:00
|
|
|
* @global bool $show_admin_bar
|
2022-04-04 20:26:06 +02:00
|
|
|
* @global string $pagenow The filename of the current screen.
|
2015-05-22 06:00:26 +02:00
|
|
|
*
|
2010-10-28 10:31:36 +02:00
|
|
|
* @return bool Whether the admin bar should be showing.
|
2010-09-27 22:26:36 +02:00
|
|
|
*/
|
2010-10-28 10:31:36 +02:00
|
|
|
function is_admin_bar_showing() {
|
2011-03-08 23:48:05 +01:00
|
|
|
global $show_admin_bar, $pagenow;
|
2010-11-17 19:47:34 +01:00
|
|
|
|
2011-09-18 00:26:01 +02:00
|
|
|
// For all these types of requests, we never want an admin bar.
|
2019-01-16 03:54:50 +01:00
|
|
|
if ( defined( 'XMLRPC_REQUEST' ) || defined( 'DOING_AJAX' ) || defined( 'IFRAME_REQUEST' ) || wp_is_json_request() ) {
|
2010-11-06 10:41:03 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-11-17 19:47:34 +01:00
|
|
|
|
Embeds: Add oEmbed provider support.
For the past 6 years, WordPress has operated as an oEmbed consumer, allowing users to easily embed content from other sites. By adding oEmbed provider support, this allows any oEmbed consumer to embed posts from WordPress sites.
In addition to creating an oEmbed provider, WordPress' oEmbed consumer code has been enhanced to work with any site that provides oEmbed data (as long as it matches some strict security rules), and provides a preview from within the post editor.
For security, embeds appear within a sandboxed iframe - the iframe content is a template that can be styled or replaced entirely by the theme on the provider site.
Props swissspidy, pento, melchoyce, netweb, pfefferle, johnbillion, extendwings, davidbinda, danielbachhuber, SergeyBiryukov, afercia
Fixes #32522.
Built from https://develop.svn.wordpress.org/trunk@34903
git-svn-id: http://core.svn.wordpress.org/trunk@34868 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-10-07 12:36:25 +02:00
|
|
|
if ( is_embed() ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-18 00:26:01 +02:00
|
|
|
// Integrated into the admin.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_admin() ) {
|
2011-09-18 00:26:01 +02:00
|
|
|
return true;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-09-18 00:26:01 +02:00
|
|
|
|
2010-12-17 09:32:43 +01:00
|
|
|
if ( ! isset( $show_admin_bar ) ) {
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( ! is_user_logged_in() || 'wp-login.php' === $pagenow ) {
|
2010-10-28 10:31:36 +02:00
|
|
|
$show_admin_bar = false;
|
2010-11-06 10:41:03 +01:00
|
|
|
} else {
|
2011-09-18 00:26:01 +02:00
|
|
|
$show_admin_bar = _get_admin_bar_pref();
|
2010-11-06 10:41:03 +01:00
|
|
|
}
|
2010-10-28 10:31:36 +02:00
|
|
|
}
|
2010-09-27 22:26:36 +02:00
|
|
|
|
2013-10-26 23:18:09 +02:00
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters whether to show the admin bar.
|
2013-10-26 23:18:09 +02:00
|
|
|
*
|
|
|
|
* Returning false to this hook is the recommended way to hide the admin bar.
|
|
|
|
* The user's display preference is used for logged in users.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param bool $show_admin_bar Whether the admin bar should be shown. Default false.
|
|
|
|
*/
|
2010-10-28 10:31:36 +02:00
|
|
|
$show_admin_bar = apply_filters( 'show_admin_bar', $show_admin_bar );
|
|
|
|
|
|
|
|
return $show_admin_bar;
|
|
|
|
}
|
2010-12-17 22:48:30 +01:00
|
|
|
|
|
|
|
/**
|
2021-10-04 22:46:59 +02:00
|
|
|
* Retrieves the admin bar display preference of a user.
|
2010-12-17 22:48:30 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @access private
|
|
|
|
*
|
2011-09-18 00:26:01 +02:00
|
|
|
* @param string $context Context of this preference check. Defaults to 'front'. The 'admin'
|
2020-07-23 22:01:04 +02:00
|
|
|
* preference is no longer used.
|
|
|
|
* @param int $user Optional. ID of the user to check, defaults to 0 for current user.
|
2011-06-09 23:47:28 +02:00
|
|
|
* @return bool Whether the admin bar should be showing for this user.
|
2010-12-17 22:48:30 +01:00
|
|
|
*/
|
2011-09-18 00:26:01 +02:00
|
|
|
function _get_admin_bar_pref( $context = 'front', $user = 0 ) {
|
2010-12-17 22:48:30 +01:00
|
|
|
$pref = get_user_option( "show_admin_bar_{$context}", $user );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( false === $pref ) {
|
2011-07-21 21:41:18 +02:00
|
|
|
return true;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2011-01-06 05:11:14 +01:00
|
|
|
|
2010-12-17 22:48:30 +01:00
|
|
|
return 'true' === $pref;
|
|
|
|
}
|