| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/jetpack/modules/ |
Upload File : |
<?php
/**
* Module Name: WordPress.com Toolbar
* Module Description: Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.
* Sort Order: 38
* Recommendation Order: 16
* First Introduced: 4.8
* Requires Connection: Yes
* Auto Activate: No
* Module Tags: General
* Additional Search Queries: adminbar, masterbar
*/
require dirname( __FILE__ ) . '/masterbar/masterbar.php';
// In order to be able to tell if it's an AMP request or not we have to hook into parse_query at a later priority.
add_action( 'admin_bar_init', 'jetpack_initialize_masterbar', 99 );
/**
* Initializes the Masterbar in case the request is not AMP.
*/
function jetpack_initialize_masterbar() {
if ( ! Jetpack_AMP_Support::is_amp_request() ) {
new A8C_WPCOM_Masterbar();
}
}