Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

reviewtable

// Add Shortcode
function reviewtable_output( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'nom' => '',
			'prix' => '',
			'macappstore' => '',
		),
		$atts,
		'reviewtable'
	);

	return '
	<table>
	<tr>
	<td>Nom</td>
	<td>Prix</td>
	<td>Lien</td>
	</tr>
	<tr>
	<td>' . $atts['nom'] . '</td>
	<td>' . $atts['prix'] . '</td>
	<td>' . $atts['macappstore'] . '</td>
	</tr>
	</table>
	';

}
add_shortcode( 'reviewtable', 'reviewtable_output' );