Looking for a Wordpress plugin

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NickPapageorgio
    Confirmed User
    • Apr 2004
    • 8323

    #1

    Looking for a Wordpress plugin

    I need a WP plugin that will take like 50 words or so from the latest 10 or 15 posts and allow me to dynamically feed them to other pages. Any suggestions? I'd prefer to be allowed to edit how many words, how many posts, and maybe have a "read more" or similar type link at the end. Thanks in advance.

    Edit** lol...my siggy is a bit old eh? Time for an update me thinx.
    Last edited by NickPapageorgio; 01-07-2009, 09:48 AM.
  • V_RocKs
    Damn Right I Kiss Ass!
    • Nov 2003
    • 32449

    #2
    Good luck on your quest... Nice to see a post from you.

    Comment

    • uno
      RIP Dodger. BEST.CAT.EVER
      • Dec 2002
      • 18450

      #3
      can't you just export a summary in rss?
      -uno
      icq: 111-914
      CrazyBabe.com - porn art
      MojoHost - For all your hosting needs, present and future. Tell them I sent ya!

      Comment

      • NickPapageorgio
        Confirmed User
        • Apr 2004
        • 8323

        #4
        Originally posted by uno
        can't you just export a summary in rss?
        I'm really unfamiliar with how to even do that. Got any tutorials or resources I could read? Thanks.

        V - Thanks man, been absolutely buried in work. Don't find much time to post anymore.

        Comment

        • NickPapageorgio
          Confirmed User
          • Apr 2004
          • 8323

          #5
          psssst...

          Comment

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

            #6
            so you basically want to include it in your sidebar?
            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

            Comment

            • collegeboobies
              So Fucking Banned
              • Jul 2004
              • 3644

              #7
              Good luck on that, and change your sig to Mccain Stroking Obama

              Comment

              • Helix
                Confirmed User
                • Feb 2002
                • 6021

                #8
                you could try CaRP - http://www.geckotribe.com/rss/carp/
                and I just found this WP plugin - http://www.geckotribe.com/rss/carp/CaRP-WP/
                that works with CaRP but I have never tried it.

                Comment

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

                  #9
                  this could do what you want, unless im getting misinformed by your post

                  Code:
                  <?php
                  
                  // this can go in functions.php in your theme directory
                  function word_split_content($words=15) {
                  $str = get_the_content('');
                  $a = preg_split("/[\s]+/", $str,$words+1);
                  $a = array_slice($a,0,$words);
                  $final_content = join(' ',$a);
                  echo $final_content;
                  }
                  ?>
                  
                  
                  <?php get_header(); ?>
                  
                  <?php
                      $recent = new WP_Query();
                      $recent->query('showposts=5');
                  ?>
                  
                  <?php while ($recent->have_posts()) : $recent->the_post(); ?>
                  <h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
                  <?php word_split_content(50); ?>
                  <?php endwhile; ?>
                  
                  <?php get_sidebar(); ?>
                  
                  <?php get_footer(); ?>
                  my icq is 704-299 let me know exactly how you want it done, i will do it free of charge.
                  Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                  Comment

                  • Si
                    Such Fun!
                    • Feb 2008
                    • 13900

                    #10
                    keyword box

                    Comment

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

                      #11
                      If you mean a plugin that can take parts of 10 or 15 posts and combine them into one post and make a feed out of them, I was looking for something like that before and wasn't able to find anything out there that is available....... let me know if you find a good way to do that from within wp.

                      __________________

                      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

                      • teg0
                        Confirmed User
                        • Jan 2006
                        • 4204

                        #12
                        I've done something similar, but it wasn't in plug-in form, was kind of a hack job to fake a bunch more extra content than was really there.

                        Comment

                        Working...