| Server IP : 172.64.80.1 / Your IP : 216.73.216.175 Web Server : LiteSpeed System : Linux srv13.swhc.ca 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : hongluck ( 2522) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/hongluck/public_html/old site/blog/wp-admin/ |
Upload File : |
<?php
/**
* Handle default dashboard widgets options AJAX.
*
* @package WordPress
* @subpackage Administration
*/
/** Load WordPress Bootstrap */
require_once('admin.php');
/** Load WordPress Administration Dashboard API */
require( 'includes/dashboard.php' );
/** Load Magpie RSS API or custom RSS API */
require_once (ABSPATH . WPINC . '/rss.php');
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
switch ( $_GET['jax'] ) {
case 'dashboard_incoming_links' :
wp_dashboard_incoming_links_output();
break;
case 'dashboard_primary' :
wp_dashboard_rss_output( 'dashboard_primary' );
break;
case 'dashboard_secondary' :
wp_dashboard_secondary_output();
break;
case 'dashboard_plugins' :
wp_dashboard_plugins_output();
break;
}
?>