elarie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change the archive title to show date not categoryYes, that’s what I want (minus the “Month:”) but I am getting the category in the title instead.
http://dev.barlowbooks.com/2015/05/?post_type=post&cat=11
Here’s my index page:
http://dev.barlowbooks.com/news/Is there a way to force it to pull the date instead of the category?
Forum: Plugins
In reply to: [Annual Archive] Is it possible to include Alpha subheads?Awesome Plugin! Excellent support!
This plugin fixed 2 issues for me. The alpha list works great and the filter feature for the archive worked wonderfully too!
Thank you Twinpictures!
Forum: Plugins
In reply to: [Annual Archive] Is it possible to include Alpha subheads?Okay, thanks. Will do!
Forum: Plugins
In reply to: [Annual Archive] Exclude category from yearly overview<NM>
- This reply was modified 9 years, 5 months ago by elarie.
Forum: Plugins
In reply to: [Annual Archive] Exclude category from yearly overviewThank You Twinpictures. I will try Archive Pro Matic.
Forum: Plugins
In reply to: [Annual Archive] Exclude category from yearly overviewSO I would modify a child of annual_archive.php file?
I only want this to apply to the page using this plugin for the side-column, not the home page.If so, where does it go? There’s a lot of code and I’m not sure when this needs to be called. Thanks and Happy New Year! 🙂
Forum: Plugins
In reply to: [Annual Archive] Exclude category from yearly overviewI also would like to modify the archive. I have 2 categories, “News” and “Resources”. I want the archive to only show the “news” category on the post Index page in the sidebar. I believe that this is the code I need but what file do I need to modify please?
Thanks in advance!
function exclude_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( ‘cat’, ‘resources’ );
}
}
add_action( ‘pre_get_posts’, ‘exclude_category’ );Thanks ThemeSumo, I will check it out!