Wordpress Admin Plugin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T20:47:46Z http://stackoverflow.com/feeds/question/225319 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/225319/wordpress-admin-plugin 1 Wordpress Admin Plugin Steve 2008-10-22T11:21:35Z 2009-10-20T02:58:45Z <p>I'm wondering how I can make a plugin to output some data via the admin panel. Just to get me going what code would make a page in the admin panel (for only administrators) to display time()?</p> http://stackoverflow.com/questions/225319/wordpress-admin-plugin/225368#225368 5 Answer by Stewart Johnson for Wordpress Admin Plugin Stewart Johnson 2008-10-22T11:32:52Z 2008-10-22T11:45:30Z <p>It's actually very easy, you only need two things:</p> <ol> <li><a href="http://ditio.net/2007/08/09/how-to-create-wordpress-plugin-from-a-scratch/" rel="nofollow">One of many tutorials on writing a Wordpress plugin</a>. Plugins subscribe to actions (amongst other things) and can emit HTML when an action is triggered by the Wordpress engine.</li> <li>The <a href="http://codex.wordpress.org/Plugin_API/Action_Reference" rel="nofollow">list on the Wordpress codex of actions to which plugins can subscribe</a> to trigger their own code. Adding actions is defined in that tutorial. Specifically you want the <a href="http://codex.wordpress.org/Plugin_API/Action_Reference#Administrative_Actions" rel="nofollow">administrative actions</a>. e.g.: the <code>admin_footer</code> action will cause your plugin's output to be displayed in the footer of the admin page. There's a wide range of actions for all kinds of situations and conditions.</li> </ol> <p>The PHP <code>date()</code> function will give you the current time, so you just need to write a function in your plugin that does <code>echo date()</code>, and then use <code>add_action</code> to get your PHP function executed in response to the appropriate Wordpress action.</p> <p>So to make it completely clear, your plugin code would look like this (not tested!):</p> <pre><code>/* Plugin Name: Admin Date Displayer Plugin URI: http://example.com/ Description: Displays the current datetime on the admin page Author: Stewart Version: 1.0 Author URI: http://bolidian.com/ */ function display_date() { echo date(); } add_action('admin_footer', 'display_date'); </code></pre> http://stackoverflow.com/questions/225319/wordpress-admin-plugin/1065255#1065255 0 Answer by Liam for Wordpress Admin Plugin Liam 2009-06-30T18:36:33Z 2009-06-30T18:36:33Z <p>The WordPress codex is the best start for learning how to do these things. <a href="http://codex.wordpress.org/Adding_Administration_Menus" rel="nofollow">http://codex.wordpress.org/Adding_Administration_Menus</a></p>