The archives tag has no wiki summary.
4
votes
3answers
4k views
Custom Post Type Archives by Date and Taxonomy
Lets use the classic example of a custom post type called "movies", with its own taxonomy called "genre".
By registering the custom post type (with a "movie" slug), the permalinks are already set up ...
2
votes
3answers
1k views
Archive Listings Filtered by Date Values in a Custom Field/Post Meta?
(Moderator's Note: The original title was "using archive by date with a custom date")
I'm adding an additional date to posts as a custom field. Now I want the archive to show posts by the custom date ...
0
votes
1answer
581 views
How To Modify The Loop in archives.php To Have 11 Posts Per Page and CSS Styling
I edited my loop in archives.php in order to work with pagination and with the Category Post List Widget. I basically pieced it all together from random code and ideas and am now so far from the ...
1
vote
2answers
3k views
Custom post type archive with pagination?
I have a custom post type called 'projects' (pastebin) and I have a page called Projects set up in my dashboard which is set to display the Projects template. (pastebin)
The problem is when I use ...
2
votes
3answers
376 views
Creating archive pages for children categories
Example:
video cat id = 4
video cat child category id's = 7,8,9
news cat id = 5
news cat child category id's = 11,12,13
I wanna display choosen categories ( like video and news ) in the different ...
1
vote
2answers
279 views
Include and Exclude Taxonomies From Archives & Feeds Using 'pre_get_posts'
What I am trying to do?
My blog uses a custom taxonomy called edition with terms like us-canada (6), eu (7) and india (8) -- term slug (ID).
I want to make sure that posts not assigned to any ...
1
vote
2answers
563 views
Sort custom-posts in archive.php via meta-key?
this question is strongly related to this question where I already got a working answer.
I have a custom-post-template named "wr_event" and a custom-taxonomy named "event_type".
This "event-posts" ...
1
vote
3answers
1k views
How to add meta box to backend menu page
I need to add a meta box to the backend menu page, in Appearance->Menus (/wp-admin/nav-menus.php), to list all the available post types, both the defaults & the custom ones.
It will contain a ...
2
votes
1answer
554 views
Display all custom post types in archives.php
How would I do this?
archive.php only has this:
wp_get_archives('type=monthly');
And wp_get_archives() does not have a parameter to display all post types.
Also I think archive-[post_type].php is ...
1
vote
1answer
860 views
Sorting archive pages with “pretty” URLs?
We want the users to re-order the posts on a page similar to pagination but I can't find anything anywhere!
It would be great to create a link to a url similar to .../page/2/title/, title being the ...
0
votes
1answer
169 views
is_singular won't call my functions?
Hi i'm using this code to call for a different stylesheet for a single post type but the problem is, It won't call the stylesheet.
It's in header.php, i also tried placing it in single.php
<?php
...
6
votes
3answers
502 views
Order posts (across the whole site) by metadata date
My custom 'Home' page is set to sort my custom posts via the custom date field with this (updated to be custom named) code in functions.php:
// sort order for home page
add_action('wp', ...
13
votes
4answers
1k views
Show a different number of posts per page depending on context (e.g., homepage, search, archive)
In the Reading Settings, there is place to set the number of posts shown that affects the number of posts shown in all contexts. I'd like to show instead a certain number of posts on the homepage, and ...
6
votes
2answers
440 views
How can I lock down an old wordpress install I don't intend to update?
I am starting a new wordpress blog, and no longer updating an old one.
The old one still gets 400-500 hits a day, so I would like to keep it up for archival purposes, as people still link to its ...
3
votes
2answers
4k views
WP 3.1 - archive pages for custom content types possible now without a plugin?
I noticed that WP 3.1 supposedly has 'new CMS capabilities like archive pages for custom content types', however, I can't see that implemented yet?
I've been using a plugin called 'Simple Custom Post ...
2
votes
1answer
109 views
How to create tabled index of posts in a certain category
I have a tech blog, what I want to do is to create an index page for articles in a certain category. For example, I want all the articles under the category "WordPress BasiX" to be arranged in an ...
2
votes
2answers
262 views
Archive by Year
After some searching I haven't been able to find a answer to what I'm trying to archive.
I'm trying to set up an archive page with accordion panels that hide/show posts from a given year with links.
...
2
votes
1answer
512 views
Custom post types - Use post_id in permalink structure when using has_archive => true
I recently asked this question Custom post types - Use post_id in permalink structure and solved it but as I have enabled 'has_archive' => true the solution given no longer works. Let me explain:
...
1
vote
1answer
791 views
Show scheduled posts in archive page
I'd like my archive.php page's daily view (is_day) to display scheduled posts (post_status=future). For example, if I go to mysite.com/2011/05/20 I would see all posts scheduled to appear on May 20.
...
3
votes
3answers
592 views
Custom Post Type Archives with 0 Posts Redirects as 404
I'm working with the new custom post type archives in 3.1 and I noticed that when my post type has 0 posts, the archive for the type results in a 404. Looking at the order of hooks being processed, ...
2
votes
1answer
82 views
Custom post type with tags
My understanding is, that custom post types can share tags with the posts also.
I have created tags and applied them to a blog post and a custom post type.
Yet when I click on a tag it only returns ...
2
votes
1answer
122 views
How can I organize/create an archive listing by Year and month
I thought this would be simpler using the basic widgets that WP provides but its not.
I need to create
2012
Decemeber
November
...
2011
December
...
The month items would be links to that ...
2
votes
1answer
583 views
Multiple post types in archives (filter?)
I'm trying to get all custom post types to appear in my archive sections on a site, including monthly, tagged, author archives. At the moment, I've thought of something like:
...
2
votes
1answer
566 views
Page queried instead of a custom taxonomy
When I try to get an archive for a custom taxonomy, WP searches for a page and doesn’t find anything.
The Setup
My code from the functions.php:
add_action( 'init', 'register_store_taxonomy' );
...
1
vote
3answers
612 views
Only get_posts of certain post formats
I'm trying to create a archive list with only my "normal" post format articles (not link, aside, quote, etc formats).
How would I implement has_post_format( 'standard' ), or something similar, into ...
1
vote
1answer
1k views
Including post_type = 'wiki' in author archives
For a user with wiki-update permission only, I want to list their wiki articles in the author archive page. Currently, it comes back with "NOT FOUND Apologies, but ...".
I am using the Twenty-ten ...
0
votes
1answer
38 views
How to let custom post type posts show in standard post archive (like in homepage)?
If I, for example, create a custom post type named 'tutorial', how do I get it to also show up in places like "Recent posts" , etc?
0
votes
1answer
424 views
Display all months with posts and inside each month show the 5 latest posts
I need to display all the months that have active posts, and inside each month I need to display at least 5 posts that are tied to each month.. the HTML will look like this:
News items
...
0
votes
1answer
946 views
Filter query_posts by tag slug on “Tag Archive” page (when tag is 2 or more words)
I'm using the following to bring up a tag archive page:
<?php query_posts( "tag=". '' . single_tag_title( '', false ) . '' ); ?>
This works perfectly for all tags of one word only, but any ...
0
votes
2answers
1k views
Custom Permalinks for Custom post Type Archives?
I know that WP 3.1 has added support for archives for custom post types but is there any way to customize the permalinks for them?
0
votes
2answers
416 views
How would you create a “weekly” archive?
I'm looking to create individual archives for each category of my website, but want to them to break into weeks. Check out the linked image (can't embed images as a new user?):
...
0
votes
2answers
2k views
Custom post type tag archives don't work for basic loop?
I have registered a custom post type with the right parameters. By that I mean I have added 'taxonomies' => array('post_tag','category'),
I have also tried using ...
0
votes
3answers
620 views
Change Permalinks Structure to a Sequential Number for Each Post?
I've just created a draft on my blog, and it's post ID is 1. After creating another draft, the post id for this last post is 3! I was hoping to see them in sequential order, so in the future I'll have ...
2
votes
1answer
287 views
Display Editable Text Above CPT Archive Listings
I have two custom post types (Authors and Partners). I display their archive page's in the main navigation and use archive-authors.php and archive-partners.php to make a couple small tweaks to the ...
2
votes
1answer
1k views
Archive list with only years and months
I'm trying to show the archive list like that
<ul>
<li>Year</li>
<li>Month</li>
<li>Month</li>
<li>Month</li>
<li>Year</li>
...
1
vote
1answer
869 views
Archive widget - limit number of months to 12
The default Archive widget display monthly archives in a dropdown.
I would like to limit the number of months to 12 (in dropdown).
What filter I should apply in my functions.php?
I tried this, but ...
0
votes
2answers
54 views
How to get the custom post type from an archive page?
In my website I have three custom post types: scripts, scenes and plugins. When visiting the archive page of a single post type (i.e. by going to mysite.com/plugins) you correctly see all the posts of ...
0
votes
1answer
464 views
Pagination throws 404 error on custom taxonomy archive pages
I have created a custom taxonomy for a custom post type called "portfolio" like so:
function jvs_portfolio_categories_init() {
register_taxonomy(
'project-category',
'portfolio',
...
0
votes
2answers
1k views
next_posts_link and previous_posts_link problem
Below is the code from my author.php file. The problem is that next_posts_link and previous_posts_link only generate links based on the number of posts in the blog authored by the author in question, ...
0
votes
2answers
643 views
Display most recent post in category instead of archive?
I've successfully redirected my blog page to my most recent post - i.e. so when you click the 'blog' link in the nav it goes to the most recent post page and you can click next/prev buttons to ...
0
votes
2answers
839 views
Category Specific Archive
I'm trying to display a monthly archive but only for a certain category. How can I do this?
0
votes
1answer
670 views
How to show specific year archive into dropdown list
Here is my current code which shows a dropdown list of all years daily post archive.
<select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'>
...
0
votes
1answer
589 views
where can I see my custom post type archive template?
I am working with wordpress 3.1 and have custom post type of whitepaper. My single-whitepaper template seems to be working. But the archive template (archive-whitepaper.php) is not.
And this after I ...
0
votes
1answer
1k views
Regex problem in an add_rewrite_rule
I'm working on a category page for a custom post type called articles in WP 3.1, and I'm having some trouble with extracting the page number.
The url: /articles/category/background/
Currently, what ...
