mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://wordpress.org/support/topic/heavy-security-issue-jetpack-offers-website-stats-to-everyone/
6 lines
207 B
Text
6 lines
207 B
Text
function jetpackcom_rm_jp_dashboard_stats_admins() {
|
|
if ( ! current_user_can( 'manage_options' ) ) {
|
|
wp_die();
|
|
}
|
|
}
|
|
add_action( 'jetpack_dashboard_widget', 'jetpackcom_rm_jp_dashboard_stats_admins', 1 );
|