Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Link to meta tag

// Add Shortcode
function tag_shortcode( $atts ) {

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

}
add_shortcode( 'p_tag', 'tag_shortcode' );