GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Looking for a Wordpress plugin (https://gfy.com/showthread.php?t=880080)

NickPapageorgio 01-07-2009 11:47 AM

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.

V_RocKs 01-07-2009 12:18 PM

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

uno 01-07-2009 12:20 PM

can't you just export a summary in rss?

NickPapageorgio 01-07-2009 12:22 PM

Quote:

Originally Posted by uno (Post 15293818)
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.

NickPapageorgio 01-07-2009 06:39 PM

psssst...

fris 01-07-2009 06:41 PM

so you basically want to include it in your sidebar?

collegeboobies 01-07-2009 06:45 PM

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

Helix 01-07-2009 06:46 PM

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.

fris 01-07-2009 07:00 PM

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.

Si 01-07-2009 07:17 PM

keyword box

d-null 01-07-2009 08:58 PM

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.

teg0 01-07-2009 10:34 PM

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.


All times are GMT -7. The time now is 02:51 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123