Created
January 15, 2016 20:49
-
-
Save rickrduncan/af632a58b23eb1df2152 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', 'b3m_add_dashboard_widgets' ); | |
function b3m_add_dashboard_widgets() { | |
wp_add_dashboard_widget('wp_dashboard_widget', 'Theme Details', 'b3m_theme_info'); | |
} | |
function b3m_theme_info() { | |
echo "<ul> | |
<li><strong>Developed By:</strong> B3Marketing, LLC</li> | |
<li><strong>Website:</strong> <a href='http://rickrduncan.com'>www.rickrduncan.com</a></li> | |
<li><strong>Contact:</strong> <a href='mailto:[email protected]'>[email protected]</a></li> | |
</ul>"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment