Home / Admin / Change ‘streetLineTwo’ in Local SEO address output to an empty string
Duplicate Snippet

Embed Snippet on Your Site

Change ‘streetLineTwo’ in Local SEO address output to an empty string

This filter can be used to change 'streetLineTwo' in Local SEO address output to an empty string

<10
Code Preview
php
<?php
add_filter( 'aioseo_local_business_address_tag_value', 'aioseo_change_local_business_address_tag_value', 10, 3 );
function aioseo_change_local_business_address_tag_value( $tagValue, $tag, $id ) {
	if ( 'streetLineTwo' === $tag['id'] ) {
		$tagValue = '';
	}
	return $tagValue;
}

Comments

Add a Comment