Wordpress People: How Do I display post titles on my home page?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • donkevlar
    Confirmed User
    • Sep 2006
    • 4325

    #1

    Wordpress People: How Do I display post titles on my home page?

    I have a full blog setup for my news section, and I want to put the latest headlines on the home page, which is not a blog... What's the easist way to do this?
    [email protected]
  • donkevlar
    Confirmed User
    • Sep 2006
    • 4325

    #2
    Is this thing on?
    [email protected]

    Comment

    • dav3
      Confirmed User
      • May 2007
      • 7348

      #3
      Change the home page to you blog posts page. That's the only thing I can think of. But I'm no blog master.

      Bump for you though.
      Webmasters :: Juicy Ads :: ACWM :: Crak Revenue :: Money Tree

      Comment

      • TheSenator
        Too lazy to set a custom title
        • Feb 2003
        • 13340

        #4
        Thank me later...

        http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
        ISeekGirls.com since 2005

        Comment

        • TheDoc
          Too lazy to set a custom title
          • Jul 2001
          • 13827

          #5
          Add the query posts showposts, to force the number of excerpts to display, allowing you to be different than the main blog.

          Code:
          <?php query_posts('showposts=6'); if (have_posts()) : while (have_posts()) : the_post(); ?>
          this creates an excerpt post on any template
          Code:
          <?php echo strip_tags(apply_filters('the_content', get_the_excerpt())); ?>
          ~TheDoc - ICQ7765825
          It's all disambiguation

          Comment

          • Angry Jew Cat - Banned for Life
            (felis madjewicus)
            • Jul 2006
            • 20368

            #6
            i had a custom script written for me that pulls the title from my rss feed. you should be able to get a coder to whip something up that'll fit your needs for relatively cheap...

            Comment

            • TheDoc
              Too lazy to set a custom title
              • Jul 2001
              • 13827

              #7
              You don't have to include the excerpt, if you want just use the permalink title call then wrap it in the have posts line with how many showposts you want.
              ~TheDoc - ICQ7765825
              It's all disambiguation

              Comment

              • teg0
                Confirmed User
                • Jan 2006
                • 4204

                #8
                There are a lot of docs on how to include things on a page outside of the wordpress loop.

                It can also be done parsing the xml.

                Comment

                Working...