WP Postrating not working on category.php
-
Hi,
WP Postrating is not working with my category.php. On all other sites works fine, just not category.php.
Here my category.php
[code]
<?php
/**
* Theme Index Section for our theme.
*
* @package ThemeGrill
* @subpackage Ample
* @since Ample 0.1
*//** Sortierung absteigend
$categories = get_the_category();
$cat_object = $categories[0];
$cat_id = $cat_object->cat_ID;
query_posts("orderby=title&order=ASC&cat=".$cat_id);
*/
?><?php get_header();
do_action( 'ample_before_body_content' ); ?>
<div class="single-page clearfix">
<div class="inner-wrap">
<div id="primary">
<div id="content">
<!--<h2 id="category_title"><?php single_cat_title( '', true ); ?></h2>--!>
<div id="category_description"><?php echo category_description(); ?></div>
<?php if ( have_posts() ) : ?><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php get_template_part( 'navigation', 'none' ); ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'none' ); ?>
<?php endif; ?>
<div id="category_description">
<?php
$id = 'category_'.get_queried_object()->term_id;
the_field('inhalt-unten', $id);
?>
</div></div>
<?php ample_both_sidebar_select(); ?>
</div>
<?php ample_sidebar_select(); ?>
</div><!-- .inner-wrap -->
</div><!-- .single-page --><?php do_action( 'ample_after_body_content' );
get_footer(); ?>[/code]
- The topic ‘WP Postrating not working on category.php’ is closed to new replies.