Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

trail arch

archive test

// Add Shortcode
function wildcustom_shortcode_trail( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'trail_category' => 'all',
			'post_tag' => 'all',
			'order' => 'asc',
		),
		$atts
	);

	wp_get_archives( $args );

}
add_shortcode( 'yvtrail', 'wildcustom_shortcode_trail' );