Advertisement
Guest User

search.php

a guest
Mar 17th, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.84 KB | None | 0 0
  1. <?php while ( have_posts() ) : the_post(); ?>
  2.  
  3.                     <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  4.  
  5.  
  6.  
  7.  
  8.                                 <?php if ($post->post_type == 'attachment'): ?>
  9.  
  10.         <section class="media image">
  11.                 <a class="fancyimg" rel="fancygallery" href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image($post->ID, 'thumbnail', 0); ?></a>
  12.                 <a class="fancyimg fancycaption" rel="fancygallery" href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php the_title(); ?></a>
  13.         </section>
  14.  
  15.  
  16.         <?php else : ?>
  17.  
  18.         <section class="box">
  19.                 <h3 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Suchergebnis zu %s', 'grandeur' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h3>
  20.                 <div class="entry-summary">
  21.                                 <?php the_excerpt(); ?>
  22.                 </div><!-- .entry-summary -->
  23.                 <footer class="entry-utility">
  24.                         <?php if ( count( get_the_category() ) ) : ?>
  25.                                 <?php printf( __( 'Posted in %2$s', 'grandeur' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?> |
  26.                         <?php endif; ?>
  27.                         <?php $tags_list = get_the_tag_list( '', ', ' );
  28.                         if ( $tags_list ): ?>
  29.                                 <?php printf( __( 'Tagged %2$s', 'grandeur' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> |
  30.                         <?php endif; ?>
  31.  
  32.                 </footer><!-- .entry-utility -->
  33.              <div class="clear"></div>
  34.         </section>
  35.  
  36.         <?php endif; ?>
  37.  
  38.                     </article><!-- end post-<?php the_ID(); ?> -->
  39.  
  40.                 <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement