Created
January 20, 2015 10:36
-
-
Save bryceadams/c66f865d553c080f7190 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'recipe_hero_meta_ingredients_amount', 'rh_scoop_amount' ); | |
function rh_scoop_amount( $amounts ) { | |
$amounts['scoop'] = 'Scoop'; | |
return $amounts; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment