Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

aho_predic_tiempo_style

Crea estilos a la tabla de predicción del tiempo de la AEMET

// Register Style
function aho_tabla_predic_tiempo() {

	wp_deregister_style( 'aho_tabla_predic_tiempo' );
	wp_register_style( 'aho_tabla_predic_tiempo', '', false, '1.0' );
	wp_enqueue_style( 'aho_tabla_predic_tiempo' );

}
add_action( 'wp_enqueue_scripts', 'aho_tabla_predic_tiempo' );