[wp-hackers] Admin Notices

Brian Fegter brian at fegter.com
Mon Apr 11 00:28:44 UTC 2011


You can hook into admin_notices.
http://codex.wordpress.org/Plugin_API/Action_Reference/admin_notices (no
docs there yet)

Example:
add_action('admin_notices', 'function_name');

You can use the core WP styling with this HTML setup:
<div id="message">
         <p>Aenean eros ante, porta commodo lacinia.</p>
</div>


More information about the wp-hackers mailing list