Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// Add Shortcode
function lodestone_recipe( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'recipe' => '',
		),
		$atts
	);

}
add_shortcode( 'db:', 'lodestone_recipe' );