betawaffles
Forum Replies Created
-
Forum: Plugins
In reply to: Getting last post of a userI’m totally sorry, I read your request too quickly, and jumped the gun on a response.
Forum: Plugins
In reply to: Getting last post of a userYou can always try using the plugin “Recent Comments” and you will also need this to make it work. It has many configuration options.
You can see it in action on this site, on the home page.
The “recent activity” on the subpages use another plugin called “Get Recent Comments” not to be confused with “Recent Comments” from above. Which may do the trick as well and doesn’t need to post plugin library.
Forum: Plugins
In reply to: Present posts in a flash slideshowVery clever! I didn’t know Flash RSS readers existed but a quick good search turned some up. I will post a solution should I find a good one.
Forum: Fixing WordPress
In reply to: Want posts in category on main page but not with the rest.The post title will not appear right actually, it displays the most recent post title in general.
Forum: Fixing WordPress
In reply to: Want posts in category on main page but not with the rest.Oops ignore that last </div> and <?php get_footer(); ?>.
Forum: Fixing WordPress
In reply to: Want posts in category on main page but not with the rest.To answer my own post, this does the trick:
<?php $posts = get_posts( “category=6&numberposts=10” ); ?>
<?php if( $posts ) : ?><div class=”post” id=”post-<?php the_ID(); ?>”>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<?php echo wptexturize($post->post_content); ?>
<?php endforeach; ?>
</div>
<?php endif; ?></div>
<?php get_footer(); ?>