first commit
This commit is contained in:
132
wp-content/themes/New folder/pk2012_sold/page-blog.php
Normal file
132
wp-content/themes/New folder/pk2012_sold/page-blog.php
Normal file
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
/*
|
||||
Template Name: Blog Template
|
||||
*/
|
||||
?>
|
||||
<?php
|
||||
get_header();
|
||||
|
||||
$post_meta = get_post_custom(get_the_ID());
|
||||
|
||||
global $grid;
|
||||
|
||||
$grid = (isset($post_meta['_grid_layout'][0])) ? $post_meta['_grid_layout'][0] : 'normal';
|
||||
$columns = (isset($post_meta['_columns'][0])) ? $post_meta['_columns'][0] : '1';
|
||||
$rows = (isset($post_meta['_rows'][0])) ? $post_meta['_rows'][0] : '10';
|
||||
$columns_class = str_replace(array('1', '2', '3', '4'), array('pk_full_width', 'pk_one_half', 'pk_one_third', 'pk_one_fourth'), $columns);
|
||||
|
||||
if (isset($post_meta['_show_categories_filter'][0]) && $post_meta['_show_categories_filter'][0] == 'false') remove_action('pk_blog_categories', 'pk_blog_categories_filter');
|
||||
|
||||
$temp_query = $wp_query;
|
||||
|
||||
$check_paged = (is_front_page() && !is_home()) ? 'page' : 'paged';
|
||||
$paged = (get_query_var($check_paged)) ? get_query_var($check_paged) : 1;
|
||||
$posts_per_page = $columns * $rows;
|
||||
|
||||
$query_args['post_type'] = 'post';
|
||||
$query_args['posts_per_page'] = $posts_per_page;
|
||||
$query_args['paged'] = $paged;
|
||||
|
||||
$blog_categories_array = (isset($post_meta['_blog_categories'][0])) ? pk_lang_object_ids(unserialize($post_meta['_blog_categories'][0]), 'category') : '';
|
||||
|
||||
if (isset($post_meta['_blog_categories'][0]) && is_array($blog_categories_array) && count($blog_categories_array) > 0) $query_args['cat'] = implode(',', $blog_categories_array);
|
||||
|
||||
$wp_query = new WP_Query($query_args);
|
||||
|
||||
do_action('pk_before_blog');
|
||||
do_action('pk_blog_categories');
|
||||
|
||||
if (have_posts() && $columns == 1) :
|
||||
|
||||
while (have_posts()) :
|
||||
|
||||
the_post();
|
||||
(!get_post_format()) ? get_template_part('format', 'blog-standard') : get_template_part('format', 'blog-'.get_post_format());
|
||||
|
||||
endwhile;
|
||||
|
||||
elseif (have_posts() && $columns > 1 && $grid == 'normal') :
|
||||
|
||||
$c = 0;
|
||||
|
||||
while (have_posts()) :
|
||||
|
||||
$c++;
|
||||
the_post();
|
||||
?>
|
||||
|
||||
<div class="<?php echo $columns_class; ?> pk_fixed<?php if ($c == $columns) : ?> pk_last<?php endif; ?>">
|
||||
<?php
|
||||
get_template_part('format', 'grid-item');
|
||||
?>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
if ($c == $columns) :
|
||||
|
||||
$c = 0;
|
||||
?>
|
||||
|
||||
<span class="pk_clear_both"></span>
|
||||
<?php
|
||||
endif;
|
||||
|
||||
endwhile;
|
||||
|
||||
elseif (have_posts() && $columns > 1 && $grid == 'special') :
|
||||
|
||||
for ($x = 1; $x <= $columns; $x++) : $i = 0;
|
||||
?>
|
||||
|
||||
<div class="<?php echo $columns_class; ?> pk_fixed<?php if ($x == $columns) : ?> pk_last<?php endif; ?>">
|
||||
<?php
|
||||
while (have_posts()) :
|
||||
|
||||
the_post();
|
||||
|
||||
if ($i < ($rows * $x) && $i >= (($x - 1) * $rows)) :
|
||||
|
||||
get_template_part('format', 'grid-item');
|
||||
|
||||
endif;
|
||||
|
||||
$i++;
|
||||
|
||||
endwhile;
|
||||
|
||||
rewind_posts();
|
||||
?>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
endfor;
|
||||
?>
|
||||
|
||||
<span class="pk_clear_both"></span>
|
||||
<?php
|
||||
|
||||
else :
|
||||
|
||||
get_template_part('format', 'no-results');
|
||||
|
||||
endif;
|
||||
|
||||
if ($wp_query -> max_num_pages > 1) :
|
||||
?>
|
||||
|
||||
<!-- pk start pagination -->
|
||||
<div class="pk_pagination">
|
||||
<?php $check_paged = (is_front_page() && !is_home()) ? 'page' : 'paged'; $paged = (get_query_var($check_paged)) ? get_query_var($check_paged) : 1; pk_pagination($wp_query -> max_num_pages, $paged, 2); ?>
|
||||
|
||||
</div>
|
||||
<!-- pk end pagination -->
|
||||
<?php
|
||||
endif;
|
||||
|
||||
$wp_query = $temp_query;
|
||||
wp_reset_query();
|
||||
|
||||
do_action('pk_after_blog');
|
||||
|
||||
get_footer();
|
||||
?>
|
Reference in New Issue
Block a user