Skip to content

Instantly share code, notes, and snippets.

@rickrduncan
Created January 15, 2016 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rickrduncan/af632a58b23eb1df2152 to your computer and use it in GitHub Desktop.
Save rickrduncan/af632a58b23eb1df2152 to your computer and use it in GitHub Desktop.
<?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:b3marketingllc@gmail.com'>b3marketingllc@gmail.com</a></li>
</ul>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment