Skip to content

Instantly share code, notes, and snippets.

@rqreyes
Forked from cmg-jess/Version Control Notice
Last active February 23, 2016 22:51
Show Gist options
  • Save rqreyes/7d5668710e569f3ab514 to your computer and use it in GitHub Desktop.
Save rqreyes/7d5668710e569f3ab514 to your computer and use it in GitHub Desktop.
wordpress admin notice
#the infomration in this notice MUST BE CUSTOMIZED PER SITE
#If the CMG JS has not been updated to CDN OR is NOT enqueued, leave a note for Victoria so a task can be created or so she can give you approval to swap it out
#If SCSS/Foundation or Shared Hosting does not apply to the site, it can be left out of the the admin notice
// Admin Notice
function your_admin_notice(){
echo '<div class="update-nag">
<p>Version Control is <span style="color:green; font-weight: bold;">ACTIVE</span> for this site.</p>
<p>Mobile Site: <span style="color:green; font-weight: bold;">YES - Responsive/Theme Switcher/Third Party</span> / <span style="color:red; font-style:italic;">NO</span></p>
<p>CMG CDN JS Enqueued: <span style="color:green; font-weight: bold;">YES</span> / <span style="color:red; font-style:italic;">NO - Enqueued, Not CDN OR CDN, Not enqueued</span></p>
<p>HTML5 Form Validation: <span style="color:green; font-weight: bold;">YES</span> / <span style="color:red; font-style:italic;">NO</span></p>
<p>SCSS / Foundation: <span style="color:green; font-weight: bold;">YES</span></p>
<p>Shared Hosting: with <span style="color:green; font-weight: bold;">miamibreastlift.com</span></p>
<p>Plugin Notes: Do not update <span style="color:blue; font-weight: bold;">YouTube Gallery</span> from <span style="color:green; font-weight: bold;">Version XX</span></p>
</div>';
}
add_action('admin_notices', 'your_admin_notice');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment