我认为这很简单,但经过几个小时的努力,我仍然无法让它发挥作用。
我想要做的就是创建一个指向特定类别中帖子的链接列表,并将其放在我网站的页脚中。
注意:我不想再使用另一个插件了!
答案 0 :(得分:0)
试试这个:
<?php
// The Query
query_posts( array ( 'category_name' => 'The Category Name', 'posts_per_page' => -1 ) );// -1 will display all posts, change to limit posts
// The Loop
while ( have_posts() ) : the_post();
echo '<li>', '<a href="<?php echo get_permalink( 268 ); ?>">';
the_title();
echo '</a>', '</li>';
endwhile;
// Reset Query
wp_reset_query();
?>
答案 1 :(得分:0)
好的,所以在让Dungey140的解决方案工作之后,我就这样做了。这也会返回帖子的正确URL。
<?php
query_posts ( array ( 'post_type' => 'the-post-type', 'category_name' => 'The Category Name', 'posts_per_page' => -1 ) );
while ( have_posts() ) : the_post(); { ?>
<li><a href="<?php echo get_permalink($post->ID); ?>"><?php echo the_title(); ?></a></li>
<?php }
endwhile;
wp_reset_query();
?>