Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created June 29, 2021 07:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digitalchild/5d28521f5e640fac9b1353f9face3b9a to your computer and use it in GitHub Desktop.
Save digitalchild/5d28521f5e640fac9b1353f9face3b9a to your computer and use it in GitHub Desktop.
Disable All in One SEO on the WC Vendors Dashboard
<?php
/**
* Disable All In One SEO on the vendor dashboard.
*/
add_filter( 'aioseo_disable', 'wcv_aioseo_disable_term_output' );
function wcv_aioseo_disable_term_output( $disabled ) {
$current_page_id = get_the_ID();
if ( wcv_is_dashboard_page( $current_page_id ) ){
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment