<?php /** * The template part for displaying results in search pages. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package accesspress_parallax */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php accesspress_parallax_posted_on(); ?> </div><!-- .entry-meta --> <?php endif; ?> </header><!-- .entry-header --> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <footer class="entry-footer"> <?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?> <?php /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( ', ' ); if ( $categories_list && accesspress_parallax_categorized_blog() ) : ?> <span class="cat-links"> <?php printf( __( 'Postado em %1$s', 'accesspress-parallax' ), $categories_list ); ?> </span> <?php endif; // End if categories ?> <?php /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ) : ?> <span class="tags-links"> <?php printf( __( 'Marcado como %1$s', 'accesspress-parallax' ), $tags_list ); ?> </span> <?php endif; // End if $tags_list ?> <?php endif; // End if 'post' == get_post_type() ?> <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?> <span class="comments-link"><?php comments_popup_link( __( 'Deixe um comentário', 'accesspress-parallax' ), __( '1 Comentário', 'accesspress-parallax' ), __( '% Comentários', 'accesspress-parallax' ) ); ?></span> <?php endif; ?> <?php edit_post_link( '<i class="fa fa-pencil-square-o"></i>'. __( 'Editar', 'accesspress-parallax' ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- .entry-footer --> </article><!-- #post-## -->