我想在wordpress中首先显示旧帖子:
我正在使用此代码获取当前类别的帖子列表:
PHP $IDOutsideLoop = $post->ID; while( have_posts() ) { the_post(); foreach( ( get_the_category() ) as $category ) $my_query = new WP_Query('category_name=' . $category->category_nicename . '&orderby=date&order=desc&showposts=100'); if( $my_query ) { while ( $my_query->have_posts() ) { $my_query->the_post(); ?> PHP print ( is_single() && $IDOutsideLoop == $post->ID ) ? ' class="test"' : ''; ?>> PHP the_permalink(); ?>" title="PHP the_title(); ?>">PHP the_title(); ?>PHP } } } ?>
如果我改变“& order = desc&”到“& order = ASC&”它仍然以相同的方式订购.我在这里做错了什么?