Last active
December 20, 2015 00:49
-
-
Save rickrduncan/6044770 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
//-> Do NOT include the opening php tag | |
// Add theme info box into WordPress Dashboard | |
add_action('wp_dashboard_setup', 'rvam_add_dashboard_widgets' ); | |
function rvam_add_dashboard_widgets() { | |
wp_add_dashboard_widget('wp_dashboard_widget', 'Theme Details', 'rvam_theme_info'); | |
} | |
function rvam_theme_info() { | |
echo "<ul> | |
<li><strong>Developed By:</strong> RVA Media, LLC</li> | |
<li><strong>Website:</strong> <a href='http://www.rvamedia.com'>www.rvamedia.com</a></li> | |
<li><strong>Contact:</strong> <a href='mailto:[email protected]'>[email protected]</a></li> | |
<li><strong>Theme Instructions:</strong> <a href='".get_site_url()."/wp-admin/admin.php?page=genesis-readme'>README</a></li> | |
</ul>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment