Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

detalhes receita

// Add Shortcode
function detalhes_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'tempo' => '0',
			'temperatura' => '0',
			'velocidade' => '0',
		),
		$atts
	);

	echo '<img src="' . plugins_url( 'images/Tempo.png', __FILE__ ) . '" width="20px" > ' . $atts['tempo'];
	echo '<img src="' . plugins_url( 'images/Temperatura.png', __FILE__ ) . '" width="20px" > ' . $atts['temperatura'];
	echo '<img src="' . plugins_url( 'images/Velocidade.png', __FILE__ ) . '"width="20px" > ' . $atts['velocidade'];

}
add_shortcode( 'detalhe', 'detalhes_shortcode' );