Guest User

Untitled

a guest
Nov 20th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <?php
  2. add_filter( 'the_content', 'wds_enable_dev_mode' );
  3. function wds_enable_dev_mode() {
  4.  
  5.     // Only alter the content on the donate page, and only if the devmode queryvar is not set to true
  6.     if ( is_page('donate') && ( !isset($_GET['devmode']) || 'true' != $_GET['devmode'] )
  7.         return '<h2>System Maintenance</h2><p>This page is currently undergoing maintenance. Sorry for the inconvenience. Please check back in an hour.</p>';
  8.  
  9.     // Otherwise, return content as normal
  10.     return $content;
  11. }}
Add Comment
Please, Sign In to add comment