| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mimradmin/www/wp-content/plugins/wp-rocket/inc/3rd-party/plugins/seo/ |
Upload File : |
<?php
/**
* Compatibility with Premium SEO Pack
*
* @link http://premiumseopack.com
*/
defined( 'ABSPATH' ) || exit;
if ( class_exists( 'psp' ) ) {
/**
* Dequeue the stylesheet of Premium SEO Pack on WP Rocket settings page.
*
* @since 2.11.6
* @author Arun Basil Lal
*/
function rocket_dequeue_premium_seo_pack_stylesheet() {
// Return on all pages but WP Rocket settings page.
$screen = get_current_screen();
if ( 'settings_page_wprocket' !== $screen->id ) {
return;
}
// Dequeueing this stylesheet unfreezes WP Rocket.
wp_dequeue_style( 'psp-main-style' );
}
add_action( 'admin_print_styles', 'rocket_dequeue_premium_seo_pack_stylesheet', 11 );
}