Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

news shortcode

enables show news custom post type

// Add Shortcode
function custom_shortcode_news( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'num' => 'all',
			'all_button' => 'false',
		), $atts )
	);

	// Code
return
}
add_shortcode( 'news', 'custom_shortcode_news' );