Documentation

'; echo $return; } /** * Adds a news widget to the dashboard. * * @link Codex reference: wp_add_dashboard_widget() * * @since 1.0 */ function acs_register_shortcode_dash_widget() { wp_add_dashboard_widget( 'ac-shortcodes', 'Arconix Shortcodes', 'acs_dash_widget' ); } /** * Output for the dashboard widget * * @link Codex reference: wp_widget_rss_output() * * @see ACS_ADMIN_IMAGES_URL Defined in /plugin.php * * @since 1.0 * @version 1.1.0 */ function acs_dash_widget() { echo '
'; wp_widget_rss_output( array( 'url' => 'http://arconixpc.com/tag/arconix-shortcodes/feed', // feed url 'title' => 'Arconix Shortcodes News', // feed title 'items' => 3, //how many posts to show 'show_summary' => 1, // 1 = display excerpt 'show_author' => 0, // 1 = display author 'show_date' => 1 // 1 = display post date ) ); ?>