Arneweb.ir in your dashboard.
Author: Alireza Nejati
Version: 1.1
Tags: feed, Arneweb, Arneweb feed, wordpress
Author URI: http://arnejati.ir
License: GPL
*/
// Add Arneweb.ir feed //
function wp_admin_dashboard_add_news_feed_widget() {
global $wp_meta_boxes;
wp_add_dashboard_widget( 'dashboard_Arne_feed', __("Arneweb Feed", "Arne"), 'dashboard_Arne_feed_output' );
}
add_action('wp_dashboard_setup', 'wp_admin_dashboard_add_news_feed_widget');
function dashboard_Arne_feed_output() {
echo '
';
wp_widget_rss_output(array(
'url' => 'http://azar3eo.ir/feed',
'title' => __('Show Last posts of Arneweb in your dashboard', 'Arne'),
'items' => 1,
'show_summary' => 1,
'show_author' => 1,
'show_date' => 1
));
wp_widget_rss_output(array(
'url' => 'http://forum.arneweb.ir/feed',
'title' => __('Show Last posts of Arneweb in your dashboard', 'Arne'),
'items' => 1,
'show_summary' => 1,
'show_author' => 1,
'show_date' => 1
));
echo "
";
}
// End //
function Arne_action_init() {
load_plugin_textdomain('Arne', false, dirname(plugin_basename(__FILE__) ) . '/lang/' );
}
add_action('init', 'Arne_action_init');
?>