jetpack_is_development_site

jetpack_is_development_site

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('jetpack_is_development_site') is found 1 times:

  • /vendor/automattic/jetpack-status/src/class-status.php line 316
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
         * @since 3.3.0
         *
         * @param bool $is_dev_site If the current site is a staging or dev site.
         */
        $is_dev_site = apply_filters( 'jetpack_is_development_site', $is_dev_site );
     
        Cache::set( 'is_development_site', $is_dev_site );
        return $is_dev_site;
    }
     
    /**