Home / Admin / Add ‘LLC’ to the Local SEO Business Name
Duplicate Snippet

Embed Snippet on Your Site

Add ‘LLC’ to the Local SEO Business Name

This filter can be used to add ‘LLC’ to the Local SEO Business Name

100+
Code Preview
php
<?php
add_filter( 'aioseo_local_business_output_business_info_location_data', 'aioseo_change_local_business_output_business_info_location_data', 10, 3 );
function aioseo_change_local_business_output_business_info_location_data( $locationData, $instance, $postId ) {
	$locationData->name .= ' LLC';
	return $locationData;
}

Comments

Add a Comment