');
//Lógica de the_loop
//Si (hay entradas)
//mientras (hay entradas)
//muestra la info de las entradas
//Si no
//no hay entradas publicadas
if( have_posts() ):
while( have_posts() ):
the_post();
//echo '';
$template_html = '
';
printf(
$template_html,
get_the_permalink(),
// has_post_thumbnail(),
// the_post_thumbnail( 'homepage-thumb' ),
get_the_post_thumbnail(),
get_the_permalink(),
get_the_title(),
get_the_time( 'd-M-Y' ),
get_the_excerpt(),
//the_category()
get_the_category_list()
);
endwhile;
else:
printf( '
' . __('No se encontraron articulos con:', 'libre') . ' '. get_search_query() .'
' );
endif;
rewind_posts();
printf('
');