for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Module Name: Progressive Web Apps
* Module Description: Enable your web site to be added to mobile home screens and cached on slow networks
* Sort Order: 23
* Recommendation Order: 13
* First Introduced: 5.1
* Requires Connection: No
* Auto Activate: No
* Module Tags: Appearance, Mobile, Recommended
* Feature: Appearance
* Additional Search Queries: mobile, theme, pwa
*/
function jetpack_load_pwa() {
include dirname( __FILE__ ) . "/pwa/pwa.php";
}
add_action( 'jetpack_modules_loaded', 'pwa_loaded' );
function pwa_loaded() {
Jetpack::enable_module_configurable( __FILE__ );
// Jetpack::module_configuration_load( __FILE__, 'amp_configuration_load' );
// Jetpack::module_configuration_screen( __FILE__, 'amp_configuration_screen' );
jetpack_load_pwa();