The keywords field in the recipe card is required for the recipe schema. However, it doesn't need to be displayed on the recipe card. For this reason, we hide the keywords by default. If you would like to display the keywords, this custom PHP code snippet can do that.
We recommend using a free code snippets plugin like WP Code to add the following code to your site:
PHP
add_filter( 'tasty_recipes_recipe_template_vars', function ( $template_vars, $recipe ) {
$recipe_json = $recipe->to_json();
$template_vars['recipe_keywords'] = $recipe_json['keywords'];
return $template_vars;
}, 10, 2 );