' . __('You searched', 'Lidra') . ': '. get_search_query() .'

'); //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 ' . __('by', 'Lidra') . ' %s

%s
%s
'; printf( $template_html, get_the_permalink(), 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 items found with:', 'Lidra') . ' '. get_search_query() .'

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