Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

spec-sheets-cat

List Spec Sheets by Category

// Add Shortcode
function spec_sheets_cat( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'category' => '',
		),
		$atts,
		'spec-sheets-cat'
	);

	$poop = 'shit';

}
add_shortcode( 'spec-sheets-cat', 'spec_sheets_cat' );