File: /hosting/kak.bg/web/wp-content/themes/kak/category.php
<?php
/**
* The template for displaying Category pages.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @file category.php
* @author FairPixels
* @link http://fairpixels.com
*/
?>
<?php get_header(); ?>
<div id="content" class="post-archive">
<?php if ( have_posts() ) : ?>
<header class="archive-header">
<h3 class="archive-title">
<span><?php echo single_cat_title( '', false ); ?></span>
</h3>
</header>
<?php
$args=array(
'post__in' => get_option('sticky_posts'),
'category__in'=>array(get_query_var('cat'))
);
$my_query = get_posts($args);
if( count($my_query) > 1 ) { ?>
<script>
jQuery(document).ready(function($) {
$('.slider-main').show();
$('.slider-main').flexslider({ // slider settings
animation: "slide", // animation style
controlNav: true, // slider thumnails class
slideshow: true, // enable automatic sliding
directionNav: false, // disable nav arrows
slideshowSpeed: 5000, // slider speed
smoothHeight: false,
keyboard: true,
mousewheel: true,
startAt: 1,
controlsContainer: ".slider-main-nav",
});
});
</script>
<div class="slider-main" style="float:none; margin-bottom: 14px;">
<ul class="slides">
<?php foreach($my_query as $blog_post): $post=$blog_post; setup_postdata($post); ?>
<?php if ( has_post_thumbnail()) { ?>
<li>
<a href="<?php the_permalink(); ?>" >
<?php the_post_thumbnail( 'fp770_375' ); ?>
</a>
<div class="post-info">
<div class="title">
<h2><a style="display: block;" href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
</div>
<div class="more">
<h6><a href="<?php the_permalink() ?>"><?php _e('Read more', 'fairpixels'); ?></a></h6>
</div>
</div>
</li>
<?php } ?>
<?php endforeach; ?>
</ul>
<div class="slider-main-nav"></div>
</div>
<?php } wp_reset_query(); ?>
<div class="archive-postlist">
<?php $i = 0; ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
$post_class ="";
if ( $i % 2 == 1 ){
$post_class =" col-last";
}
?>
<div class="one-half<?php echo $post_class; ?>">
<?php get_template_part( 'content', 'excerpt' ); ?>
</div>
<?php $i++; ?>
<?php endwhile; ?>
</div>
<?php fp_pagination(); ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'fairpixels' ); ?></h1>
</header><!-- /entry-header -->
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'fairpixels' ); ?></p>
<?php get_search_form(); ?>
</div><!-- /entry-content -->
</article><!-- /post-0 -->
<?php endif; ?>
</div><!-- /content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>