'); //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

%s

%s ' . __('by', 'Lidra') . ' %s %s

%s
'; printf( $template_html, get_the_post_thumbnail(), get_the_title(), get_the_time( 'd-M-Y' ), get_avatar( get_the_author_meta('ID'), 18 , '', 'author'), get_the_author_meta('user_url'), get_the_author(), get_the_category_list() //get_the_content() //the_category() ); printf('
'); the_content(); printf('
' ); comments_template(); endwhile; else: printf( '

' . __('No post', 'Lidra') . '

' ); endif; rewind_posts(); printf('