junger
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Widgets page missing from WPMU member blog adminHi @ sam_h1
Could you please be more descriptive of exactly what you did? What did you update the option_value for wp_#_user_roles to?
Having this same issue right now and would love to use your fix!
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] Problem with form placement on pageSame thing happening to me. Any idea, anyone?
Forum: Fixing WordPress
In reply to: [Plugin: WP-EMail] Problem with WP-EmailSame thing happening here, even with the new 2.5.1 version. Help!
This did the trick for me, also. Thanks!
Forum: Plugins
In reply to: Fix comment and category counts after importAMAZING!
You just saved my day, for sure.
Did exactly as it should.
Thanks!
Forum: Fixing WordPress
In reply to: How to Exclude Current Post from Query?I’ve since found a solution to this problem… see:
http://www.darrenhoyt.com/2008/06/11/displaying-related-category-and-author-content-in-wordpress/Forum: Fixing WordPress
In reply to: How to Exclude Current Post from Query?I’m trying to figure this out, too. It has something to do with using
the_ID()but, I’m not sure how.
Here’s the code I’m using:
<?php $current_cat=get_the_category(); $current_category = $current_cat[0]->cat_name; ?> <?php $query= 'category_name=' . $current_category. '&orderby=date&showposts=5'; // concatenate the query ?> <?php query_posts($query); // run the query ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li> <?php endwhile;?>