Changeset 3260084
- Timestamp:
- 03/22/2025 03:28:46 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
easy-maintenance-mode-and-coming-soon/trunk/includes/class-easy-maintenance-mode.php
r3257276 r3260084 163 163 */ 164 164 public function enqueue_scripts_frontend() { 165 wp_enqueue_style( 166 'pct_frontend_style', 167 EMM_PLUGIN_URL . 'assets/css/frontend.css', 168 array(), 169 EMM_VERSION 170 ); 165 $maintenance_status = get_option('TRPlugin_emm_maintenance_mode', 'off'); 166 if ( $maintenance_status == 'on' ) { 167 wp_enqueue_style( 168 'pct_frontend_style', 169 EMM_PLUGIN_URL . 'assets/css/frontend.css', 170 array(), 171 EMM_VERSION 172 ); 173 } 171 174 } 172 175 }
Note: See TracChangeset
for help on using the changeset viewer.