Wordpress question: Code or plugin to summarize post on blog.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Cory W
    Deeply shallow
    • Jan 2004
    • 9133

    #1

    Wordpress question: Code or plugin to summarize post on blog.

    Basically, I want to see about summarizing blog post, causing the user to only view the title, a paragraph of the text, and have to click through for the rest.

    I seem to recall someone posting code that did that, but I can't find it.

    Any help appreciated.

    Thanks,
    ICQ: 292310358
    Offering writing and content services (mainstream).
    Marketing for L3 Payments
  • munki
    Do Fun Shit.
    • Dec 2004
    • 13393

    #2
    Fired...

    I have the simplest tastes. I am always satisfied with the best.” -Oscar Wilde

    Comment

    • fris
      Too lazy to set a custom title
      • Aug 2002
      • 55679

      #3
      its built into wordpress to do this
      Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

      Comment

      • Cory W
        Deeply shallow
        • Jan 2004
        • 9133

        #4
        Originally posted by fris
        its built into wordpress to do this
        That's what I thought. I am sure I am missing it. I found the RSS Summary.
        ICQ: 292310358
        Offering writing and content services (mainstream).
        Marketing for L3 Payments

        Comment

        • Cory W
          Deeply shallow
          • Jan 2004
          • 9133

          #5
          Nevermind. Munki showed me.

          I am stupid. I just write.
          ICQ: 292310358
          Offering writing and content services (mainstream).
          Marketing for L3 Payments

          Comment

          • stickyfingerz
            Doin fine
            • Oct 2005
            • 24984

            #6
            To make this thread useful to those who don't know how to do this. To the right of the add image icon there is a little piece of paper that looks like its been split horizontally. You can either click that icon at the spot you want in your post, or under code you can add <!--more--> where you want the post to split.

            Comment

            • Cory W
              Deeply shallow
              • Jan 2004
              • 9133

              #7
              Originally posted by stickyfingerz
              To make this thread useful to those who don't know how to do this. To the right of the add image icon there is a little piece of paper that looks like its been split horizontally. You can either click that icon at the spot you want in your post, or under code you can add <!--more--> where you want the post to split.
              That's what Munki told me also, but I not only don't have the icon, but it doesn't work when I manually insert it. I am on 2.5, maybe that's the issue?
              ICQ: 292310358
              Offering writing and content services (mainstream).
              Marketing for L3 Payments

              Comment

              • stickyfingerz
                Doin fine
                • Oct 2005
                • 24984

                #8
                Originally posted by WEG Cory
                That's what Munki told me also, but I not only don't have the icon, but it doesn't work when I manually insert it. I am on 2.5, maybe that's the issue?
                Hmm no 2.5 should do it. Its been in wordpress for as long as I can remember.

                Here is 2.6 version.

                Comment

                • Cory W
                  Deeply shallow
                  • Jan 2004
                  • 9133

                  #9
                  Originally posted by stickyfingerz
                  Hmm no 2.5 should do it. Its been in wordpress for as long as I can remember.

                  Here is 2.6 version.

                  I'm a fucking moron.

                  Thanks.
                  ICQ: 292310358
                  Offering writing and content services (mainstream).
                  Marketing for L3 Payments

                  Comment

                  • stickyfingerz
                    Doin fine
                    • Oct 2005
                    • 24984

                    #10
                    Originally posted by WEG Cory
                    I'm a fucking moron.

                    Thanks.
                    hehe no worries. Happens to all of us from time to time.

                    Comment

                    • datatank
                      Confirmed User
                      • Aug 2004
                      • 5471

                      #11
                      + Excerpt Excerpts are optional hand-crafted summaries of your content. You can use them in your template

                      That is the cleanest way to do it IMO, Unless you want to get into fancy things like Custom Fields

                      Comment

                      • Cory W
                        Deeply shallow
                        • Jan 2004
                        • 9133

                        #12
                        Originally posted by datatank
                        + Excerpt Excerpts are optional hand-crafted summaries of your content. You can use them in your template

                        That is the cleanest way to do it IMO, Unless you want to get into fancy things like Custom Fields
                        I tried filling in the Excerpt form field. It didn't seem to work for me.
                        ICQ: 292310358
                        Offering writing and content services (mainstream).
                        Marketing for L3 Payments

                        Comment

                        • datatank
                          Confirmed User
                          • Aug 2004
                          • 5471

                          #13
                          Originally posted by WEG Cory
                          I tried filling in the Excerpt form field. It didn't seem to work for me.
                          I think you might have to add something to your theme then. Works on some themes and not others

                          <?php the_excerpt(); ?>
                          http://codex.wordpress.org/Template_Tags/the_excerpt

                          Comment

                          • Cory W
                            Deeply shallow
                            • Jan 2004
                            • 9133

                            #14
                            Originally posted by datatank
                            I think you might have to add something to your theme then. Works on some themes and not others

                            <?php the_excerpt(); ?>
                            http://codex.wordpress.org/Template_Tags/the_excerpt
                            What's the advantage to doing it this way, as opposed to the < more > break?

                            Here's how it looks now:
                            http://surfelport.com/
                            ICQ: 292310358
                            Offering writing and content services (mainstream).
                            Marketing for L3 Payments

                            Comment

                            • datatank
                              Confirmed User
                              • Aug 2004
                              • 5471

                              #15
                              Originally posted by WEG Cory
                              What's the advantage to doing it this way, as opposed to the < more > break?

                              Here's how it looks now:
                              http://surfelport.com/
                              You can use different text in there than the actual post
                              Just more flexible I like it better

                              Comment

                              • StarkReality
                                Confirmed User
                                • May 2004
                                • 4444

                                #16
                                Originally posted by WEG Cory
                                What's the advantage to doing it this way, as opposed to the < more > break?
                                By adding it to the index template, you can make all your posts just show excerpts automatically, without even inserting a more tag manually.

                                My favourite is displaying the latest post as full post, all the other ones as excerpts (on the frontpage).

                                Comment

                                • Cory W
                                  Deeply shallow
                                  • Jan 2004
                                  • 9133

                                  #17
                                  Originally posted by datatank
                                  You can use different text in there than the actual post
                                  Just more flexible I like it better
                                  Originally posted by StarkReality
                                  By adding it to the index template, you can make all your posts just show excerpts automatically, without even inserting a more tag manually.

                                  My favourite is displaying the latest post as full post, all the other ones as excerpts (on the frontpage).
                                  Thanks guys. I get it now. That's pretty cool.
                                  ICQ: 292310358
                                  Offering writing and content services (mainstream).
                                  Marketing for L3 Payments

                                  Comment

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

                                    #18
                                    Originally posted by StarkReality
                                    By adding it to the index template, you can make all your posts just show excerpts automatically, without even inserting a more tag manually.

                                    My favourite is displaying the latest post as full post, all the other ones as excerpts (on the frontpage).
                                    good thinking, I know there are a couple of plugins around that do something like that automatically

                                    __________________

                                    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

                                    Working...