Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Get Projects With Plugin

// Add Shortcode
function md_get_projects_with_plugin( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'plugin_slug' => '',
		), $atts )
	);
}
add_shortcode( 'md_projects_with_plugin', 'md_get_projects_with_plugin' );