File: /var/www/rmc-logistics.net/wp-content/plugins/dashboard.php
<?php
/*
Plugin Name: dashboard
Plugin URI: http://www.site-4you.ru/
Description: dashboard
Author: i
Version: 10.02A
Author URI: http://www.site-4you.ru/
*/
function a_site4you_dashboard_widget() {
echo '<iframe src="http://site-4you.ru/wp-content/plugins/dashboard/file.html" width="100%" height="400px"></iframe>';
}
function add_custom_dashboard_widget() {
wp_add_dashboard_widget('a_site4you_dashboard_widget', 'Сайт для вас', 'a_site4you_dashboard_widget');
}
add_action('wp_dashboard_setup', 'add_custom_dashboard_widget');
function disable_default_dashboard_widgets() {
remove_meta_box('dashboard_right_now', 'dashboard', 'core');
remove_meta_box('dashboard_recent_comments', 'dashboard', 'core');
remove_meta_box('dashboard_incoming_links', 'dashboard', 'core');
remove_meta_box('dashboard_plugins', 'dashboard', 'core');
remove_meta_box('dashboard_quick_press', 'dashboard', 'core');
remove_meta_box('dashboard_recent_drafts', 'dashboard', 'core');
remove_meta_box('dashboard_primary', 'dashboard', 'core');
remove_meta_box('dashboard_secondary', 'dashboard', 'core');
}
add_action('admin_menu', 'disable_default_dashboard_widgets');
?>