Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Projects

Display custom post type (projects)

// Add Shortcode
function projetos_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'orderby' => 'title',
			'order' => 'ASC',
		), $atts )
	);

	// Code
$projects = "";

return $projects;
}
add_shortcode( 'projetos', 'projetos_shortcode' );