|
#1
Mar 19, 2009, 03:05 PM
|
|
|
|
1,333 posts · Feb 2009
Wordpress 3.4.1, Atahualpa 3.7.7
|
|
Exclude category from Recent Posts in sidebar
I do not want the latest obituary posts showing up in the Recent Posts sidebar widget on the left.
http://larchmontgazette.com/wp27/
I want to be able to exclude obituaries and maybe some other categories, in the future, from the sidebar widget. I tried the Advanced Category Excluder plugin, but it didn't do a thing for me. I don't see any other likely plugins when I search the Wordpress plugin directory.
Help!
|
#2
Mar 20, 2009, 04:48 PM
|
|
|
|
3,768 posts · Oct 2008
Munich, Germany
|
|
Use one instance of the PHP code widget http://wordpress.org/extend/plugins/php-code-widget/ and inside the widget put:
PHP Code:
<ul> <?php $recentPosts = new WP_Query(); $recentPosts->query('showposts=5&cat=-XX,-YY,-ZZ'); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>
In showposts=5&cat=-XX,-YY,-ZZ replace 5 with amount of posts and XX, YY and ZZ with the ID's of the categories that should be excluded
|
#3
Mar 20, 2009, 05:24 PM
|
|
|
|
1,333 posts · Feb 2009
Wordpress 3.4.1, Atahualpa 3.7.7
|
|
I got it working, thanks!
Very nice.
You're the best!
Last edited by paulae; Mar 20, 2009 at 05:54 PM.
|
#4
Apr 21, 2009, 07:18 PM
|
|
|
|
3,768 posts · Oct 2008
Munich, Germany
|
|
That's kinda funny, I just googled for this and found my own post
|
#5
Apr 21, 2009, 08:23 PM
|
|
|
|
1,333 posts · Feb 2009
Wordpress 3.4.1, Atahualpa 3.7.7
|
|
Mirrors within mirrors.
|
#6
Jan 29, 2011, 03:29 AM
|
|
Just what i was searching for.
Thank you
|
#7
Apr 9, 2013, 03:45 AM
|
|
Quote:
Originally Posted by Flynn
That's kinda funny, I just googled for this and found my own post
|
LOL. Google replaces our memory
|
#8
Mar 18, 2011, 06:04 AM
|
|
|
1 posts · Mar 2011
Randers, Denmark
|
|
Interesting, but for one or another reason in my site it still shows all the categories. Wordpress 3.1, PHP 5.
|
#9
Mar 18, 2011, 06:13 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
What version of Atahualpa?
What is the URL?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#10
Apr 13, 2011, 11:33 AM
|
|
Sorry to jump in, but I have a similar problem. I want to exclude a category from the next/previous listing on the single-post page. I've used a plug-in to disable the category from appearing on the home page, but it shows up in the sidebar listing of categories on the single-post page, and in the next/previous header. I'm not sure where in Atahualpa to look to edit this page template, or whether there's an easy way to keep the category out of these listings. Using theme v. 3.2, Wp v 3.1.1. Thanks.
|
#11
Apr 13, 2011, 12:14 PM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
Version 3.2?? Wow are you using an old version of Atahualpa.
The things in the sidebar are widgets. Without the site URL or knowing what widget you are using I can't tell you if it is an Atahualpa widget or from someone else. If it is from someone else then you have to look at the plugin code and/or contact the plug-in's author about this.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#12
Apr 9, 2013, 09:34 AM
|
|
Quote:
Originally Posted by Flynn
Use one instance of the PHP code widget http://wordpress.org/extend/plugins/php-code-widget/ and inside the widget put:
PHP Code:
<ul>
<?php
$recentPosts = new WP_Query();
$recentPosts->query('showposts=5&cat=-XX,-YY,-ZZ');
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
In showposts=5&cat=-XX,-YY,-ZZ replace 5 with amount of posts and XX, YY and ZZ with the ID's of the categories that should be excluded
|
oh, so good, tks verry much
|
#13
Mar 22, 2013, 05:55 AM
|
|
Hello all
I want to customize my wordpress widget by excluding first 3 posts from recent posts. I do not want to show them. I've set recent posts to show to 10 currently.
Please help. thanks
|
#14
Mar 22, 2013, 06:40 AM
|
|
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
what version of Atahualpa and Wordpress are you on?
What widget are you talking about?
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
|