2009-07-28 4 views
0

「音楽」と呼ばれるもの以外のすべてのカテゴリの投稿をホームページに表示したい。そして私はリンクが変わるのを望んでいません。 "Front page"や "Posts page"の結果にフックして1つのカテゴリを除外するにはどうすればよいですか?1つのカテゴリを除いた投稿をブログのホームページに表示するにはどうすればよいですか?

私はWordpress APIを呼び出す必要があると仮定しています。

ありがとうございます!

答えて

0
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> 

<!-- If the post is in the category we want to exclude, we simply pass to the next post. --> 
<?php if (in_category('3')) continue; ?> 

<div class="post"> 

    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> 

    <small><?php the_time('F jS, Y'); ?></small> 

    <div class="entry"> 
    <?php the_content(); ?> 
    </div> 

    <p class="postmetadata">Posted in <?php the_category(', '); ?></p> 
</div> <!-- closes the first div box --> 

<?php endwhile; else: ?> 
<p>Sorry, no posts matched your criteria.</p> 
<?php endif; ?> 
関連する問題