Server : Apache/2.4.58 (Ubuntu) System : Linux yumsem00.cafe24.com 5.4.0-131-generic #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 x86_64 User : root ( 0) PHP Version : 8.2.14 Disable Function : NONE Directory : /var/www/html/wp-content/plugins/honeypot/includes/ |
Upload File : |
<?php if ( ! defined( 'ABSPATH' ) ) exit; add_action("wp_dashboard_setup", "wpa_dashboard_widget"); function wpa_dashboard_widget() { add_meta_box( 'wpa_dashboard_widget', 'WP Armour Anti Spam Statistics', 'wpa_dashboard_widget_function', 'dashboard', 'side', 'high'); } function wpa_dashboard_widget_function(){ ob_start(); include('views/wpa_stats_widget.php'); $widget_content = ob_get_contents(); ob_end_clean (); $widget_content = apply_filters( 'wpa_widget_content', $widget_content); echo $widget_content; }