jacekwilczynski

WP theme caching

Aug 20th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. // wp-config.php
  4. define('MCARE_DEV_MODE', true);
  5.  
  6. // wp-content/themes/divi-child/functions.php
  7.     wp_enqueue_style(
  8.         'theme-style',
  9.         get_theme_file_uri('/build/style.css'),
  10.         'parent-style',
  11.         MCARE_DEV_MODE ? time() : '1.0'
  12.     );
Advertisement
Add Comment
Please, Sign In to add comment