我在头版设置并颠倒了帖子标题列表的顺序:
<?php
global $post;
$args = array( \'category\' => 6 );
$myposts = get_posts( $args );
$reverseposts = array_reverse( $myposts, true);
foreach( $reverseposts as $post ) : setup_postdata($post); ?>
<?php the_title(); ?>
<?php endforeach; ?>
现在我无法找到合适的“a href”行将这些标题链接到另一个临时文件中调用的帖子。I硬编码:
<a href="<?php bloginfo(\'template_url\'); ?>/category6"><?php the_title(); ?></a>
但我想有一种正确的方法可以动态地获取“category6”。
任何帮助都将不胜感激。Thx提前。