Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wp-seopress/09521e0d039ff466ccb6c0c85cee109b to your computer and use it in GitHub Desktop.
Save wp-seopress/09521e0d039ff466ccb6c0c85cee109b to your computer and use it in GitHub Desktop.
Filter tabs in the Dashboard Site Overview block
add_filter('seopress_dashboard_site_overview_tabs', 'sp_dashboard_site_overview_tabs');
function sp_dashboard_site_overview_tabs($tabs) {
//Default array
// $tabs = [
// 'tab_seopress_analytics' => esc_html__('Google Analytics', 'wp-seopress-pro'),
// 'tab_seopress_matomo' => esc_html__('Matomo Analytics', 'wp-seopress-pro'),
// 'tab_seopress_ps' => esc_html__('PageSpeed', 'wp-seopress-pro'),
// 'tab_seopress_gsc' => esc_html__('Search Console', 'wp-seopress-pro'),
// ];
//Remove Page Speed tab of the Site Overview block
unset($tabs['tab_seopress_ps']);
return $tabs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment