Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created January 20, 2015 10:36
Show Gist options
  • Save bryceadams/c66f865d553c080f7190 to your computer and use it in GitHub Desktop.
Save bryceadams/c66f865d553c080f7190 to your computer and use it in GitHub Desktop.
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