Disable SEO News Dashboard Widget
add_filter( ‘aioseo_show_seo_news’, ‘aioseo_disable_dashboard_widget’ ); function aioseo_disable_dashboard_widget( $enabled ) { return false; }Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
add_filter( ‘aioseo_show_seo_news’, ‘aioseo_disable_dashboard_widget’ ); function aioseo_disable_dashboard_widget( $enabled ) { return false; }Continue reading
add_filter( ‘aioseo_show_in_admin_bar’, ‘aioseo_disable_admin_bar’ ); function aioseo_disable_admin_bar( $enabled ) { return false; }Continue reading
add_filter( ‘aioseo_redirects_log_skip’, ‘redirects_log_skip’, 10, 2 ); function redirects_log_skip( $skip, $data ) { if ( 404 === $data[‘http_code’] ) { $skip = true; } return $skip; }Continue reading
add_filter( ‘aioseo_page_builder_integration_disable’, ‘__return_true’ );Continue reading
add_filter( ‘aioseo_local_business_taxonomy_name’, ‘aioseo_change_local_business_taxonomy_name’ ); function aioseo_change_local_business_taxonomy_name( $name ) { $name = ‘franchise-state’; return $name; }Continue reading
add_filter( ‘aioseo_local_business_post_type_single_label’, ‘aioseo_change_local_business_post_type_single_label’ ); function aioseo_change_local_business_post_type_single_label( $label ) { $label = ‘Franchise’; return $label; }Continue reading
add_filter( ‘aioseo_local_business_post_type_plural_label’, ‘aioseo_change_local_business_post_type_plural_label’ ); function aioseo_change_local_business_post_type_plural_label( $label ) { $label = ‘Franchises’; return $label; }Continue reading
add_filter( ‘aioseo_import_yoast_seo_posts_per_action’, ‘aioseo_increase_yoast_posts_import’); function aioseo_increase_yoast_posts_import( $number ) { return 250; }Continue reading
add_filter( ‘aioseo_import_seopress_posts_per_action’, ‘aioseo_increase_seopress_posts_import’); function aioseo_increase_seopress_posts_import( $number ) { return 250; }Continue reading
add_filter( ‘aioseo_import_rank_math_posts_per_action’, ‘aioseo_increase_rank_math_posts_import’); function aioseo_increase_rank_math_posts_import( $number ) { return 250; }Continue reading