-
-
Save rqreyes/7d5668710e569f3ab514 to your computer and use it in GitHub Desktop.
wordpress admin notice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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