The archives tag has no wiki summary.
1
vote
2answers
396 views
How to pull image from first post and display it on monthly Archive page?
I am using a custom template for my monthly Archive page. This page will show all the posts-links (category-wise) for the particular month.
In the very first post of each month, there shall be only ...
5
votes
1answer
979 views
Setting up custom post type archives in WP3.1? Any luck?
I've just moved a site I'm developing to WP3.1 so that I can take advantage of and start testing some of the new features. I'm especially liking the has_archive parameter in registering custom post ...
3
votes
2answers
1k views
How do I make wp_get_archives show me months where only pages were created?
I am creating a plugin and have a problem,
this code gives my all months that post were added:
<select name="sdate" id="sdate">
<?php wp_get_archives('format=option'); ?>
...
1
vote
1answer
141 views
Custom post type - get_day_link()
How can I get the archive links for a custom post type? get_day_link() doesn't seem to work
3
votes
2answers
1k views
Archive sorting functions by custom fields (front-end)
I want to give the users the ability to sort the posts in the archive by some custom fields that I pre-define.
The end result would be en a tabbed container, and the user will click on the relevant ...
2
votes
3answers
544 views
Archive pages for posts based on their taxonomy?
Is it possible to display archive pages of posts based on their taxonomies, and an archive page of a term in that taxonomy??
For example, i have a site about beauty products, and i write a product ...
2
votes
2answers
274 views
Tag system like Quora?
What would be the best way to go for creating a tag-system similar to the one on quora.com?
If you don't know what quora looks like, here is what I'm thinking about:
On the tag archive page the user ...
0
votes
1answer
70 views
How can I permanently cache or “archive” a WP blog without needing future maintenance
I have a client who has an annual complete makeover of their website design and content, but they still want their old sites available to view (each with that year's respective design/CSS).
Once ...
1
vote
1answer
508 views
wp_get_archives() display months even if there is no posts
Hay, the example on the wp_get_archives documentation page shows how to show a list of all the posts, by months. However if there is no posts for a month, the month doesnt get displayed.
So an ...
1
vote
2answers
136 views
how do I encode links to specific archive searches?
I want to embed links to the archive pages with specific search criteria. i.e Links to specific categories, links to specific authors etc etc
At the moment I am adding the links using anchor tags, ...
0
votes
2answers
443 views
Archives and Categories in Custom Menu
What is the easiest way to place the Archives and Categories lists within my menu under a parent tab. I'd like both of the lists, such as "Archives" leading to the "archives" sub-menu, and the same ...
1
vote
1answer
561 views
How can i display the posts per week in a particular month?
I have to display the posts as the following
September 2010
Friday September 24, 2010
post1
post2
.
.
.
Friday September 17, 2010
post1
post2
.
.
.
Friday September 10, 2010
post1
post2
.
.
.
...
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
4answers
3k views
Display posts links from a category group by year
I want to display posts links from a category group by year. Group by year becouse by default wordpress repeat the date for each post. I try use a code but I got all post in current year. How can I do ...
1
vote
2answers
2k views
Showing post thumbnail (attachment) on the archive.php category listing
I'm seeking to customize my categories listing (archive.php) so that it shows a thumbnail image of the first image attached to each post
However, apparently the archive.php file is one of those that ...
2
votes
1answer
755 views
Change of permalink structure - redirects in htaccess breaks the archive links
When I started with my blog, the permalinks and following structure:
http://<domain>/%year%/%monthnum%/%day%/%postname%/
Some time ago, I changed the permalink structure to ...
1
vote
3answers
4k views
Create an “All Posts” or “Archives” Page with WordPress 3.0?
I'd like to create an "All Posts" page on the Ocean Bytes blog that contains an unordered list of all Titles of the posts to date, with each title hyperlinking to its blog post.
There appear to be ...
0
votes
3answers
618 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 ...
5
votes
3answers
1k views
Decreasing the Memory Consumption of a WordPress Site?
The test site requires a lot of memory when viewing some category/archive pages.
I met with the following error messages yesterday:
Fatal error: Allowed memory size of
33554432 bytes exhausted ...
4
votes
2answers
1k views
How can I get posts in a subcategory to display on it's parent categories archive page?
Currently when you display an archive category page, it only displays it for the main parent, and doesn't display any of the posts that may be in the subcategories under it's parent. How can I alter ...
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 ...
3
votes
3answers
83 views
How do I place content on archive pages but not on main page?
I would like to place content in a sidebar of my blog articles when they are viewed in the archive, but not show this content when the blog articles are shown on the main page of my site.
Can this ...