Forum Replies Created

Viewing 1 replies (of 1 total)
  • в function php темы добавить код можно и тогда в консоли хрома ошибка исчезнет:

    function jquery_migrate( $scripts ) {
    if ( ! is_admin() && ! empty( $scripts->registered[‘jquery’] ) ) {
    $jquery_dependencies = $scripts->registered[‘jquery’]->deps;
    $scripts->registered[‘jquery’]->deps = array_diff( $jquery_dependencies, array( ‘jquery-migrate’ ) );
    }
    }
    add_action( ‘wp_default_scripts’, ‘jquery_migrate’ );

Viewing 1 replies (of 1 total)