PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
wordpress-seo
/
src
/
integrations
/
admin
<?php namespace Yoast\WP\SEO\Integrations\Admin; use Yoast\WP\SEO\Conditionals\Admin_Conditional; use Yoast\WP\SEO\Integrations\Integration_Interface; /** * Disable_Concatenate_Scripts_Integration class. */ class Disable_Concatenate_Scripts_Integration implements Integration_Interface { /** * Returns the conditionals based in which this loadable should be active. * * In this case: when on an admin page. * * @return array The conditionals. */ public static function get_conditionals() { return [ Admin_Conditional::class ]; } /** * Registers an action to disable script concatenation. */ public function register_hooks() { \add_action( 'wp_print_scripts', [ $this, 'disable_concatenate_scripts' ] ); } /** * Due to bugs in the 5.5 core release concatenate scripts is causing errors. * * Because of this we disable it. * * @return void */ public function disable_concatenate_scripts() { global $concatenate_scripts; $concatenate_scripts = false; } }
[-] social-templates-integration.php
[edit]
[-] indexables-exclude-taxonomy-integration.php
[edit]
[-] installation-success-integration.php
[edit]
[-] fix-news-dependencies-integration.php
[edit]
[-] admin-columns-cache-integration.php
[edit]
[-] health-check-integration.php
[edit]
[-] helpscout-beacon.php
[edit]
[-] workouts-integration.php
[edit]
[+]
addon-installation
[-] indexing-tool-integration.php
[edit]
[-] migration-error-integration.php
[edit]
[-] integrations-page.php
[edit]
[-] redirects-integration.php
[edit]
[-] background-indexing-integration.php
[edit]
[-] link-count-columns-integration.php
[edit]
[-] import-integration.php
[edit]
[-] social-profiles-helper.php
[edit]
[-] first-time-configuration-integration.php
[edit]
[-] menu-badge-integration.php
[edit]
[-] deactivated-premium-integration.php
[edit]
[-] unsupported-php-version.php
[edit]
[-] indexables-page-integration.php
[edit]
[-] old-configuration-integration.php
[edit]
[-] disable-concatenate-scripts-integration.php
[edit]
[-] first-time-configuration-notice-integration.php
[edit]
[-] cron-integration.php
[edit]
[+]
..
[-] indexing-notification-integration.php
[edit]
[-] crawl-settings-integration.php
[edit]