Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

tablepress shortcode

// Add Shortcode
function ai_make_table_by_tablepress( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'tbl_id' => '1',
			'type' => 'PC',
		),
		$atts,
		'ai_make_table'
	);

	$output = "";
	
	return $output;

}
add_shortcode( 'ai_make_table', 'ai_make_table_by_tablepress' );