loop.php 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. global $options;
  3. $category_description = category_description();
  4. if ( ! empty( $category_description ) )
  5. echo '' . $category_description . '';
  6. if ( ! have_posts() ) : ?>
  7. <h1><?php _e( 'Nothing found', 'piratenkleider' ); ?></h1>
  8. <p><?php _e( 'Please try to search:', 'piratenkleider' ); ?></p>
  9. <div class="fullwidth"><?php get_search_form(); ?></div>
  10. <?php endif;
  11. if ( 'person'== get_post_type() ) {
  12. $out = '';
  13. $args = array(
  14. 'post_type' => 'person',
  15. 'order' => 'ASC',
  16. 'meta_key' => 'person_last_name',
  17. 'orderby' => 'meta_value',
  18. 'posts_per_page' => 30,
  19. 'offset' => 0
  20. );
  21. $person = new WP_Query( $args );
  22. if( $person->have_posts() ) {
  23. $out .= ' <table class="person">';
  24. while ($person->have_posts() ) {
  25. $person->the_post();
  26. $post_id = $person->post->ID;
  27. $out .= piratenkleider_display_person($post_id, 'table');
  28. }
  29. $out .= '</table>';
  30. wp_reset_postdata();
  31. } else {
  32. $out = '<section class="shortcode person"><p>';
  33. $out .= __('No personal information found.', 'piratenkleider');
  34. $out .= "</p></section>\n";
  35. }
  36. wp_reset_query();
  37. echo $out;
  38. } else {
  39. while ( have_posts() ) {
  40. the_post();
  41. /* gallery */
  42. if ( in_category( _x('gallery', 'gallery category slug', 'piratenkleider') ) ) { ?>
  43. <h2>
  44. <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'piratenkleider' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
  45. <?php the_title(); ?>
  46. </a>
  47. </h2>
  48. <?php
  49. piratenkleider_post_pubdateinfo();
  50. if ( post_password_required() ) {
  51. the_content();
  52. } else {
  53. $images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
  54. $total_images = count( $images );
  55. $image = array_shift( $images );
  56. $image_img_tag = wp_get_attachment_image( $image->ID, 'thumbnail' );
  57. ?>
  58. <a href="<?php the_permalink(); ?>"><?php echo $image_img_tag; ?></a>
  59. <p>
  60. <?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'piratenkleider' ),
  61. 'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'piratenkleider' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
  62. $total_images
  63. ); ?>
  64. </p>
  65. <?php the_excerpt();
  66. }
  67. ?>
  68. <a href="<?php echo get_term_link( _x('gallery', 'gallery category slug', 'piratenkleider'), 'category' ); ?>"><?php _e( 'More images', 'piratenkleider' ); ?></a>
  69. | <?php
  70. comments_popup_link( __( 'Post a comment', 'piratenkleider' ), __( '1 Comment', 'piratenkleider' ), __( '% kommentare', 'piratenkleider' ) );
  71. edit_post_link( __( 'Edit', 'piratenkleider' ), '|', '' );
  72. } else {
  73. echo piratenkleider_post_teaser($options['category-teaser-titleup'],$options['category-teaser-datebox'],$options['category-teaser-dateline'],$options['category-teaser-maxlength'],$options['teaser-thumbnail_fallback'],$options['category-teaser-floating']);
  74. }
  75. /* end of loop */
  76. }
  77. if ( $wp_query->max_num_pages > 1 ){
  78. next_posts_link( __( '&larr; Older entries', 'piratenkleider' ) );
  79. previous_posts_link( __( 'Newer entries &rarr;', 'piratenkleider' ) );
  80. }
  81. }
  82. ?>