techreviewau
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posting Article on different directory..Thanks Achim, but you can only specify a category base there and the category name will come after that..at the moment category comes like mydomain.com/category/category-name/..if I could get rid of the /category/ from here, leaving only the /category-name/ after the domain then that would’ve solved the problem too…
but not sure how to do that..
Forum: Everything else WordPress
In reply to: Hiding Posts from “Recent Posts” SectionYou sure are fast mate. I was just trying to get attention to get it fixed ASAP, that’s all. Anyway, I’ve resolved this issue and here’s the solution if anyone else need it in future.
instead of this:
<?php //wp_get_archives(‘type=postbypost&limit=15’); ?>you’ve to do this:
-
<?php $recent = new WP_Query(“showposts=15&cat=-2”); while($recent->have_posts()) : $recent->the_post();?>
- “><?php the_title(); ?>
<?php endwhile; ?>
Add “&cat=-2”..Where id # 2 is my iPhone & iPhone 3G category.
Thanks gusy.
[sig moderated]Forum: Fixing WordPress
In reply to: Recent Posts from CategoryHi,
Can anyone help me with the following please?I want to hide couple of articles from the Recent Posts section. Not from unregistered users, from everyone. I’ve a separate section for those so don’t want to duplicate. And I’ve a separate category for those articles too, say “Special Category” and the ID of that Category is 2. Now how can I do the following? I have:
1. post 1
2. post 2
3. post 3
4. and so onNow I want to hide say post 1 & post 2 (which are under “Special Category”) from the Recent Post list. How can I achieve that? I do host my own site and like million others I use WordPress.
Please help.
Regards.
Forum: Everything else WordPress
In reply to: Hiding Posts from “Recent Posts” Sectionthanks mate…