Skip to content

Instantly share code, notes, and snippets.

@JayWood
Created October 24, 2016 17:06
Show Gist options
  • Save JayWood/7e35151d307b333a18afae26ef83cec3 to your computer and use it in GitHub Desktop.
Save JayWood/7e35151d307b333a18afae26ef83cec3 to your computer and use it in GitHub Desktop.
Local delivery filter for translated text
<?php
function fb_lp_to_local_delivery( $translated_text ) {
if ( 'Local Pickup' == $translated_text ) {
$translated_text = 'Local Delivery';
}
}
add_filter( 'gettext', 'fb_lp_to_local_delivery' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment