mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
6 lines
198 B
Text
6 lines
198 B
Text
add_action( 'wp_dashboard_setup', 'wp_fail2ban_remove_dashboard_widget' );
|
|
|
|
function wp_fail2ban_remove_dashboard_widget() {
|
|
|
|
remove_meta_box('wp_fail2ban_last_messages','dashboard', 'normal');
|
|
}
|