开发者

wordpress multiple categories

开发者 https://www.devze.com 2023-02-23 01:01 出处:网络
I want to display posts on homapage in following situations: when \"front_cat\" is selecteded, \"front_cat\" + one of other cats is selected(multiple cats selected in write panel)

I want to display posts on homapage in following situations:

  1. when "front_cat" is selecteded,
  2. "front_cat" + one of other cats is selected(multiple cats selected in write panel)

in any other cases cats are not displayed in homepage, only in category page. tnx

Hope is not开发者_如何转开发 too confusing question.

I exluded categories from home page:

<?php
if ( is_home() ) {
  query_posts( 'cat=-13,-12,-15,-14,-7,-11,-6' );
}
?>

any ideas?

0

精彩评论

暂无评论...
验证码 换一张
取 消