Wordpress Question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • darnit
    Confirmed User
    • Jul 2001
    • 2439

    #1

    Wordpress Question

    In WordPress is it possible to configure posts in a certain category to not appear as a new post at the top of the blog but just appear in their respective category archives?

    Thanks
  • beta-tester
    Rock 'n Roll Baby!
    • Sep 2004
    • 22562

    #2
    yes it is possible. There is a plugin called category exclusion, or smth like that ;)
    google it.

    Sig for sale. Affordable prices. Contact me and get a great deal ;)

    My contact:
    ICQ: 944-320-46
    e-mail: manca {AT} HotFreeSex4All.com

    Comment

    • GrouchyAdmin
      Now choke yourself!
      • Apr 2006
      • 12085

      #3
      It's really trivial to do this in TextPattern, WordPress, it would likely be easier to just 'Write as a Page', and set it for the subcategory you want. This will also have the "benefit" of not be displayed in a tree, they work individually.

      TextPattern: Modify your display logic: <txp:article customfield="type"> or just create a new type of entry, and exclude it from the front page and/or category list.

      Comment

      • StarkReality
        Confirmed User
        • May 2004
        • 4444

        #4
        http://zeo.unic.net.my/notes/exclude...-in-wordpress/
        http://codex.wordpress.org/Conditional_Tags

        Comment

        • darnit
          Confirmed User
          • Jul 2001
          • 2439

          #5
          Awsome. Thanks everyone for the assistance. After digging a little on your suggestions i did find this plugin which seems to work like a charm

          http://ryowebsite.com/?p=46

          Comment

          • DjSap
            Confirmed User
            • Jul 2002
            • 3869

            #6
            You don't need a plugin to do this. For example if you want to exclude cat id 5 then put this in index.php at the top, this is a wordpress function.

            <?php
            if (is_home()) {
            query_posts("cat=-5");
            }
            ?>

            You should avoid plugins unless it's necassery, since they may break at updates.
            Blog Themes, TGP Design, Writing Services, Grunt Work
            ICQ: 66871495

            Comment

            • Scroto
              Confirmed User
              • Nov 2005
              • 2804

              #7
              Originally posted by DjSap
              You don't need a plugin to do this. For example if you want to exclude cat id 5 then put this in index.php at the top, this is a wordpress function.

              <?php
              if (is_home()) {
              query_posts("cat=-5");
              }
              ?>

              You should avoid plugins unless it's necassery, since they may break at updates.
              Thanks man, that was excellent

              Comment

              Working...