Tagged Questions
0
votes
0answers
17 views
home.php and the first page of the archive
I have a home.php template file in our Wordpress blog that displays a special first page as the front page of our blog (Short post excerpts, posts from categories, photos, etc, etc).
Now I want to ...
0
votes
1answer
95 views
Overwriting TwentyTwelve template file with child theme template, but lower in the hierarchy
I've (I think) an interesting problem here. What I want to do is create a global archive page, with everything on it. Dates, authors, categories etc all on one page.
I have a child theme, with ...
0
votes
1answer
20 views
Tag Posts showing in wrong places
Am using a custom template (tag.php) to show posts related to tag. So when someone clicks on say tag ‘A’ then he/she gets redirected to my tag.php layout instead of default template for archives. I ...
0
votes
1answer
183 views
How to create template for taxonomy results limited by Custom Post Type?
I've got a Custom Post Type with a Custom Taxonomy set up. So how do I create an archive template to display posts from that CPT, limited by taxonomy?
Here's the deal:
The CPT is called Shows. Each ...
1
vote
1answer
86 views
Archive.php filtered by pre-determined category
My archive.php template is formatted perfectly to list out posts from a certain month and year. However, I only want this template to show from a specific category. I can query for the specific ...
0
votes
1answer
61 views
Problem with permalink structure for Wordpress custom post_type archive template
I have looked at other similar answers to this question but not finding my way.
I am using Custom Post Types plugin for a custom post_type called 'product' and has_archive is set to 'true' in the ...
1
vote
2answers
567 views
Using a different template per Custom Taxonomies for single term archive pages
I have 2 custom taxonomies, each with a number of terms:
tax1
term1_1
term1_2
tax2
term2_1
term2_2
term2_3
I am trying to have each taxonomy usea different template file for each its ...
0
votes
2answers
26 views
Archive template limiting to 4 entries?
I have a category called "javascript" and it's limiting my list to only 4 entries?
<?php get_header(); ?>
<div class="container">
<div class="row">
<div ...
1
vote
1answer
428 views
Query post for 'selected category' in archive.php
I'm trying to figure out how to display a 'featured post' on a selected category archive.
My website uses the category-based navigation for different types of posts (text only post-blog, and image ...
0
votes
2answers
264 views
wordpress showing all posts instead of date range
When going to http://craigmdennis.com/articles/ Wordpress uses the index.php template.
When you go to http://craigmdennis.com/2010/05/ Wordpress uses the same template (markup below) but shows the ...
0
votes
1answer
134 views
How can I allow users to edit text that will be displayed on a custom post type archive page?
I like the custom post types Wordpress offers. Most of the time I like the way that the archive of custom posts is displayed. For example if you have a custom post type of top_hats you can visit ...
0
votes
1answer
475 views
Page is defaulting to archive page and not designated template
I created a page called "Projects" through the wordpress admin
I created a template called "Projects"
Set the "Projects" page to use the Projects template.
How come when I navigate to the Projects ...
0
votes
1answer
1k views
Simplest Way to Build Custom Archives Page?
I am looking to create a page in Wordpress to output links to all of our posts from every month since we launched the blog. I have seen the archive.php template file in Wordpress, but this seems to ...
0
votes
1answer
221 views
Force WordPress to NOT display the manual excerpt
I'm forced to use manual excerpts on a number of my posts to integrate them with a shortcode plugin. However, this is interfering with how they're being displayed on an archive page (using a page ...
1
vote
2answers
100 views
Get link to a specific template file [closed]
I was planning on creating a custom "Archives" template to create a detailed Archives page for my blog, including lists of posts by category, tag, date and author. Rather than use a static link ...
0
votes
2answers
387 views
How to have two different versions of a tag/category/taxonomy archive page?
I have a site that has two different bodies of content: more formal content (using various different custom post types) and a blog (using a blog post type). These two different bodies of content use ...
1
vote
2answers
185 views
How can I get this request to use the Custom Post Type page template instead?
I read the answer for this post which says you can do something like this:
http://example.com?post_type=car&color=red
When viewing $wp_query everything seems to be working fine. That is, I'm ...
0
votes
1answer
246 views
A problem with date archives
I downloaded a widget for my blog, which works just like the calendar widget but displays a custom post type instead. It correctly marks my CPT-posts and creates links, such as ...
0
votes
2answers
203 views
What is the best practice to style archive page 2,3,etc differently than archive.php?
I have a custom post-type 'videos' and on the first page I have the first video styled differently than the next videos on the page. Basically I show the first video in a large format, while the rest ...
0
votes
1answer
30 views
Is there a template tag I can use to link to the archive page corresponding to the month that a post was published on?
For example, if the post was published on may 5th 2011, then clicking on "May 5th, 2011" would show all posts published in May 2011. How can that be done?
0
votes
1answer
74 views
Custom Archive Page
I want to create a custom archive page. It will look like this:
2011
January February March April May June... (Months)
May (Current Month)
Post 1
Post 2
Post 3 ...
And clicked one of months ...
0
votes
1answer
763 views
Can you orderby slug in a taxonomy archive page using WP_Query?
In my taxonomy.php, my query is `
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$wpq = array ('posts_per_page' => -1, $term->taxonomy => ...
2
votes
3answers
4k views
What is the link to my default “archive” page?
I'm using twentyten and have overloaded home.php to do some custom stuff. However, I would still like to have a page that lists all of my recent posts, archive-style.
I can get to an archive page for ...
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 ...