我已经在页面中添加了类别和标签,但现在我正试图将它们添加到页面中,但它不会显示任何内容,除非我将类别添加到帖子中。。。
有人能看看我做错了什么吗?
// The Query
query_posts( array ( \'category_name\' => \'powershell-start\', \'posts_per_page\' => -1 ) );
// The Loop
while ( have_posts() ) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile;
// Reset Query
wp_reset_query();
?>
编辑:很抱歉,我注意到我不清楚。我试图在一个页面上显示一个特定的类别,每个页面都有倾斜和链接。但以上部分仅在我将类别添加到帖子而不是页面时有效。
这就是我在函数中添加的内容。php:
/* add categories and tags to pages */
function add_taxonomies_to_pages() {
register_taxonomy_for_object_type( \'post_tag\', \'page\' );
register_taxonomy_for_object_type( \'category\', \'page\' );
}
add_action( \'init\', \'add_taxonomies_to_pages\' );