Home / Admin / AIO Dashboard
Duplicate Snippet

Embed Snippet on Your Site

AIO Dashboard

Suport for AIO SEO dashboard

Code Preview
php
<?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;
}

Comments

Add a Comment