');
//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();
$template_html = '
%s ' . __('by', 'Lidra') . ' %s
%s
';
printf(
$template_html,
get_the_permalink(),
// has_post_thumbnail(),
// the_post_thumbnail( 'homepage-thumb' ),
get_the_post_thumbnail( null, '', $attr = array( 'title' => get_the_title() ) ),
get_the_permalink(),
get_the_title(),
get_the_time( 'd-M-Y' ),
get_the_author_meta('user_url'),
get_the_author(),
get_the_excerpt(),
//the_category()
get_the_category_list()
);
endwhile;
else:
printf( '
' . __('No post', 'Lidra') . '
' );
endif;
rewind_posts();
printf('