Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1534260/cwd/plugins/jetpack/modules/masterbar/wp-posts-list/ |
Upload File : |
<?php /** * WP-Admin Posts list bootstrap file. * * @package Jetpack */ /** * Load the Posts_List_Notification. */ function masterbar_init_wp_posts_list() { global $pagenow; if ( ( 'edit.php' === $pagenow && isset( $_GET['post_type'] ) && 'page' === $_GET['post_type'] ) // phpcs:ignore WordPress.Security.NonceVerification.Recommended ) { require_once __DIR__ . '/class-posts-list-page-notification.php'; Automattic\Jetpack\Dashboard_Customizations\Posts_List_Page_Notification::init(); } } add_action( 'init', 'masterbar_init_wp_posts_list', 1 );