Disable the dashboard widget in All in One SEO

Disable the dashboard widget in All in One SEO on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'aioseo_show_seo_news', 'aioseo_disable_dashboard_widget' );

function aioseo_disable_dashboard_widget( $enabled ) {
   return false;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.