-
-
Save zarankumar/e6f0da4d1ea1cded5073 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 | |
/* | |
Plugin Name: Dashboard Widget Example Plugin | |
Plugin URI: http://example.com/wordpress-plugins/my-plugin | |
Description: A plugin to create dashboard widgets in WordPress | |
Version: 1.0 | |
Author: Brad Williams | |
Author URI: http://wrox.com | |
License: GPLv2 | |
*/ | |
add_action( 'wp_dashboard_setup', 'boj_dashboard_example_widgets' ); | |
function boj_dashboard_example_widgets() { | |
//create a custom dashboard widget | |
wp_add_dashboard_widget( 'dashboard_custom_feed', | |
'My Plugin Information', 'boj_dashboard_example_display' ); | |
} | |
function boj_dashboard_example_display() { | |
echo ' <p> Please contact [email protected] to report bugs. </p> '; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment