Home / Admin / Change the Default Taxonomy Name “aioseo-location-category”
Duplicate Snippet

Embed Snippet on Your Site

Change the Default Taxonomy Name “aioseo-location-category”

This filter can be used to change the default taxonomy name “aioseo-location-category”.

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

Comments

Add a Comment