Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

pricing table short code

// Add Shortcode
function render_pricing_table( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'id' => '18',
			'name' => 'test',
		),
		$atts
	);

	return 'here is my output';

}
add_shortcode( 'pricing_package', 'render_pricing_table' );