Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
Automatically replace words throughout the front-end of your directory.
Usage
add_filter( 'wpbdp_custom_strings', 'bd_replace_strings' );
Parameters
$strings (array) A list of strings to replace
Examples
Replace a custom term
This example will replace the word "Region" with "Location" on the front-end of your directory.
function bd_replace_strings( $strings ) {
$strings['Region'] = 'Location';
$strings['Regions'] = 'Locations';
return $strings;
}
add_filter( 'wpbdp_custom_strings', 'bd_replace_strings' );
Change Log
Added in version 5.13
