如何将页面A上的帖子标题链接到页面B上的帖子?

时间:2012-03-16 作者:luprates

我在头版设置并颠倒了帖子标题列表的顺序:

<?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提前。

1 个回复
SO网友:weston deboer

get_category_link 就是你要找的。您可以使用:

<?php echo get_category_link(6); ?>
这将把url输出到分类页面。

<a href="<?php echo get_category_link(6); ?>"><?php the_title(); ?></a>

结束