Problem with sort in sub_categories
-
Have some problem with grouping posts in sub_categories after adding argumetns to query_post. Hel me please
<? $catid = get_cat_id( single_cat_title("",false) );; $args = array( 'cat' => '$catid', 'post_type' => 'post', 'meta_key' => 'MY_KEY', 'orderby' => 'meta_value_num', 'order' => 'DESC', ); query_posts( $args ); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?><a href="<?php the_permalink() ?>"><?php the_title() ?></a><br /><?php endwhile; endif; wp_reset_query(); ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Problem with sort in sub_categories’ is closed to new replies.