dumb wordpress question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • HorseShit
    Too lazy to set a custom title
    • Dec 2004
    • 17513

    #1

    dumb wordpress question

    anyone know a way not using tags and also not using the post private function to have a new post not show up in the main page/recent posts? right now im just giving it an old date so they go to the back blahhh
  • HorseShit
    Too lazy to set a custom title
    • Dec 2004
    • 17513

    #2
    bummmmppp anyone know?

    Comment

    • d-null
      . . .
      • Apr 2007
      • 13724

      #3
      not sure exactly what you are looking for, but you can set up a static main page pretty easily, and it is also easy to turn off the recent posts widget

      __________________

      Looking for a custom TUBE SCRIPT that supports massive traffic, load balancing, billing support, and h264 encoding? Hit up Konrad!
      Looking for designs for your websites or custom tubesite design? Hit up Zuzana Designs
      Check out the #1 WordPress SEO Plugin: CyberSEO Suite

      Comment

      • Agent 488
        Registered User
        • Feb 2006
        • 22511

        #4
        why would you not use the post private function?

        Comment

        • cryptie
          Confirmed User
          • Jul 2007
          • 114

          #5
          1) save it, do not "publish it"
          or 2) edit it after publishing and set it to "unpublished"
          or 3) save it as a "draft"
          or 4) pre-publish it, if you want it to be published next week at 12pm, change the published date to that date. it will publish itself at that time.
          Signature coming soon! Just as soon as my first site goes live! ETA this weekend

          Comment

          • FlexxAeon
            Confirmed User
            • May 2003
            • 3765

            #6
            Originally posted by cryptie
            1) save it, do not "publish it"
            or 2) edit it after publishing and set it to "unpublished"
            or 3) save it as a "draft"
            or 4) pre-publish it, if you want it to be published next week at 12pm, change the published date to that date. it will publish itself at that time.
            what he said....

            or you could pre-publish it with a wacked out date like Jan 1, 2099 or something?
            or put it in it's own category and then recode the loop to omit that category?

            quite a few ways but depends on what you want the end result to be
            flexx [dot] aeon [at] gmail

            Comment

            • cryptie
              Confirmed User
              • Jul 2007
              • 114

              #7
              Originally posted by FlexxAeon
              or put it in it's own category and then recode the loop to omit that category?
              PHP Code:
              <?php $recent = new WP_Query("cat=-4&showposts=4&offset=2"); while($recent->have_posts()) : $recent->the_post();?>
              where -4 is -yourcat
              Signature coming soon! Just as soon as my first site goes live! ETA this weekend

              Comment

              Working...