Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ebaru_evangelio

Par mostrar el nombre del libro de la lectura del día

// Add Shortcode
function ebaru_evangelio( $atts , $content = null ) {

	           $today = date('Ymd');
	           $url2 = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=reading&lang=SP&content=FR";    
	           $h2 = fopen($url2,"r");
	           while (!feof($h2)) {
	           $str2 .= fgets($h2);
	           }
	           print $str2;

}
add_shortcode( 'primeralectura', 'ebaru_evangelio' );