Home / Admin / Change Default Post Type Plural Label “Locations”
Duplicate Snippet

Embed Snippet on Your Site

Change Default Post Type Plural Label “Locations”

This filter can be used to change the default post type plural label from “Locations” to 'Franchises'.

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

Comments

Add a Comment