Advertisement
Guest User

Enfold - Blog

a guest
May 28th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.78 KB | None | 0 0
  1. <?php
  2. global $avia_config, $post_loop_count;
  3.  
  4.  
  5. if(empty($post_loop_count)) $post_loop_count = 1;
  6. $blog_style = !empty($avia_config['blog_style']) ? $avia_config['blog_style'] : avia_get_option('blog_style','multi-big');
  7. $blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
  8.  
  9. // check if we got posts to display:
  10. if (have_posts()) :
  11.  
  12. while (have_posts()) : the_post();
  13.  
  14. /*
  15. * get the current post id, the current post class and current post format
  16. */
  17.  
  18. $the_id = get_the_ID();
  19. $parity = $post_loop_count % 2 ? 'odd' : 'even';
  20. $last = count($wp_query->posts) == $post_loop_count ? " post-entry-last " : "";
  21. $post_class = "post-entry-".$the_id." post-loop-".$post_loop_count." post-parity-".$parity.$last." ".$blog_style;
  22. $post_format = get_post_format() ? get_post_format() : 'standard';
  23.  
  24. /*
  25. * retrieve slider, title and content for this post,...
  26. */
  27. $size = strpos($blog_style, 'big') ? strpos(avia_layout_class( 'main' , false), 'sidebar') ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
  28. $current_post['slider'] = get_the_post_thumbnail($the_id, $size);
  29. $current_post['title'] = get_the_title();
  30. $current_post['content'] = $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> &rarr;</span>') : get_the_excerpt();
  31. $current_post['content'] = $blog_content == "excerpt_read_more" ? $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> &rarr;</span></a></div>' : $current_post['content'];
  32. $current_post['before_content'] = "";
  33.  
  34. /*
  35. * ...now apply a filter, based on the post type... (filter function is located in includes/helper-post-format.php)
  36. */
  37. $current_post = apply_filters( 'post-format-'.$post_format, $current_post );
  38. $with_slider = empty($current_post['slider']) ? "" : "with-slider";
  39. /*
  40. * ... last apply the default wordpress filters to the content
  41. */
  42. $current_post['content'] = str_replace(']]>', ']]&gt;', apply_filters('the_content', $current_post['content'] ));
  43.  
  44. /*
  45. * Now extract the variables so that $current_post['slider'] becomes $slider, $current_post['title'] becomes $title, etc
  46. */
  47. extract($current_post);
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56. /*
  57. * render the html:
  58. */
  59.  
  60. echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";
  61.  
  62. echo "<div class='modified-blog'>";
  63.  
  64. echo $title;
  65.  
  66. echo "<span class='post-meta-infos'>";
  67. echo "<span class='date-container minor-meta'>".get_the_time('d M Y')."</span>";
  68. echo "<span class='text-sep'>/</span>";
  69.  
  70.  
  71.  
  72. if ( get_comments_number() != "0" || comments_open() ){
  73.  
  74. echo "<span class='comment-container minor-meta'>";
  75. comments_popup_link( "0 ".__('Comments','avia_framework'),
  76. "1 ".__('Comment' ,'avia_framework'),
  77. "% ".__('Comments','avia_framework'),'comments-link',
  78. "".__('Comments Disabled','avia_framework'));
  79. echo "</span>";
  80. echo "<span class='text-sep'>/</span>";
  81. }
  82.  
  83.  
  84. $taxonomies = get_object_taxonomies(get_post_type($the_id));
  85. $cats = '';
  86. $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
  87.  
  88. if(!empty($taxonomies))
  89. {
  90. foreach($taxonomies as $taxonomy)
  91. {
  92. if(!in_array($taxonomy, $excluded_taxonomies))
  93. {
  94. $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
  95. }
  96. }
  97. }
  98.  
  99. if(!empty($cats))
  100. {
  101. echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
  102. echo $cats;
  103. echo '</span><span class="text-sep">/</span>';
  104. }
  105.  
  106.  
  107. echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
  108. the_author_posts_link();
  109. echo '</span>';
  110. echo '</span>';
  111.  
  112. echo "</div>";
  113.  
  114. //default link for preview images
  115. $link = get_permalink();
  116.  
  117. //on single page replace the link with a fullscreen image
  118. if(is_singular())
  119. {
  120. $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
  121. }
  122.  
  123.  
  124. //echo preview image
  125. if(strpos($blog_style, 'big') !== false)
  126. {
  127. if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';
  128. if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
  129. }
  130.  
  131. if(!empty($before_content))
  132. echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';
  133.  
  134. echo "<div class='blog-meta'>";
  135.  
  136. $icon = '<span class="iconfont">'.$avia_config['font_icons'][$post_format]."</span>";
  137.  
  138. if(strpos($blog_style, 'multi') !== false)
  139. {
  140. $gravatar = "";
  141. $link = get_post_format_link($post_format);
  142. if($post_format == 'standard')
  143. {
  144. $gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
  145. $link = get_author_posts_url($post->post_author);
  146. }
  147.  
  148. echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
  149. }
  150. else if(strpos($blog_style, 'small') !== false)
  151. {
  152.  
  153. echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
  154. }
  155.  
  156.  
  157. echo "</div>";
  158.  
  159. echo "<div class='entry-content clearfix {$post_format}-content'>";
  160.  
  161. // echo the post content
  162. echo $content;
  163.  
  164. wp_link_pages(array('before' =>'<div class="pagination_split_post">',
  165. 'after' =>'</div>',
  166. 'pagelink' => '<span>%</span>'
  167. ));
  168.  
  169. if(has_tag() && is_single())
  170. {
  171. echo '<span class="blog-tags minor-meta">';
  172. echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
  173. echo '</span></span>';
  174. }
  175.  
  176. echo "<div class='post_delimiter'></div>";
  177. echo "</div>";
  178. echo "<div class='post_author_timeline'></div>";
  179. echo "</div>";
  180.  
  181. $post_loop_count++;
  182. endwhile;
  183. else:
  184.  
  185. ?>
  186.  
  187. <div class="entry">
  188. <h2 class='post-title'><?php _e('Nothing Found', 'avia_framework'); ?></h2>
  189. <p><?php _e('Sorry, no posts matched your criteria', 'avia_framework'); ?></p>
  190. </div>
  191.  
  192. <?php
  193.  
  194. endif;
  195.  
  196. if(empty($avia_config['remove_pagination'] ))
  197. {
  198. echo "<div class='{$blog_style}'>".avia_pagination()."</div>";
  199. }
  200. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement