The custom-post-type-archives tag has no wiki summary.
0
votes
0answers
31 views
Archive page for custom post type not working
I use a plugin called CPT-onomies to create Custom Post Types. I created a post type called "case", and set "Has Archive Page" to true, but when i try to view a single case, i just get 404'd. Same ...
-1
votes
1answer
17 views
How can I force URL of a custom post type archive to use a page template?
I have the following custom post type:
if ( $args->has_archive ) {
$archive_slug = $args->has_archive === true ? $args->rewrite['slug'] : $args->has_archive;
if ( ...
0
votes
0answers
16 views
Custom Post Type and Rewrite Slug Not working for Archive page
I'm hoping someone can help me out. I asked this on Wordpress.org but figured no harm in asking here too.
I read an article about using a custom plugin to create custom post types. So I did. ...
0
votes
1answer
43 views
Post type archive page not working
I registered a custom post type using Custom Post Type UI, and created an archive page and named it archive-recipe.php, 'recipe' is my custom post type name. But its not working, instead its using the ...
0
votes
2answers
118 views
+50
Rewrite custom post type url's adding meta box values
I've got these custom post types (CPT) and meta boxes:
Movies (CPT)
Genre (Meta box)
Genres (CPT)
If one movie is called Die hard then I want the permalink to be:
/genres/action/die-hard
This ...
0
votes
1answer
17 views
How to get type of archive whether it is post or date or category archive?
using function is_archive() we can know whether it is archive page or not.
But if it is archive page how can i find whether it is author archive page or category archive or date archive.
I have ...
0
votes
0answers
29 views
Archive Page Pagination not working
I am using the following template for a custom post type. The pagination does not work as you can see at http://www.xava.ie/testimonials
Any hints as to why it is not working for me?
<?php
...
0
votes
0answers
33 views
Custom Post Type query not working in archive.php
I have a custom post type namely "Slider" for a banner slideshow on the website. I run a custom loop query to get the slides from the custom post type. I have put the code on every template file ...
0
votes
0answers
26 views
Pre Get Posts fails with more than 1 Post Type
Inside Functions.php
function custom_filings_archive( $query )
{
if(is_post_type_archive( 'filings' ))
$query->set('post_type',array('the-reports','press-release'));
return $query;
}
...
-1
votes
1answer
39 views
Pagination for Custom Post Type with Multiple Types
The first page shows the first results however, mypages/page2 leads to a 404 error. The following code is inside archives-mypages.php
<?php
$temp = $wp_query;
$wp_query=null;
$args = array(
...
0
votes
0answers
27 views
How can i retrive the movies, trailers, news in a single page using search
How can i retrive that. For a few month i build a website, and i want to make it diferent
For the search i have 3 post type, and i have for each diferent themes for display
- Movies
- Trailers
- ...
0
votes
1answer
22 views
Specify a Page as the parent to the CPT Archive
I have an "About Us" page on my site with some child pages. I have created a "History" custom post type, where the rewrite slug is 'history'.
I use archive-cpt_history.php as the template file for ...
0
votes
1answer
50 views
Archive of custom post type returns 404 [duplicate]
I have created a custom post type "video" (see my functions.php below) and it should return an archive on mysite.com/video but instead I get a 404.
Functions.php
// Video's
add_action( 'init', ...
0
votes
1answer
42 views
How to use WP_Query in a CPT achive page?
I can't get WP_Query to work in my custom-post-type archive page. Can someone please tell me what I'm doing wrong? I would appreciate any help.
Here's the code in archive-bulletin.php:
<?php ...
2
votes
1answer
87 views
Custom Post Type / Taxonomy Slug / Post Title with post type archive
I've tried plugins, read through stack and spent hours on this, and I just can't seem to find a way to achieve what I want.
I can achieve the following permalink structure:
...
0
votes
1answer
34 views
Custom taxonomy archive page not routing?
I have a plugin free custom post type and taxonomy setup - see below. From this I get an archive of the CPT at:
/archives/nomination-archive
If I use the_terms( $post->ID, 'nomination_type' , ' ' ...
1
vote
2answers
61 views
Have a Custom Post Type index page display taxonomy items instead of posts
I have a CPT registered that is called lessons with a custom taxonomy (category) that is called courses. I want the /courses page (archive-courses.php?) to display the individual courses (i.e. "online ...
0
votes
1answer
38 views
single-mySlug.php works: archive-mySlug.php does not. Custom Post Type
I am registering a custom post type (listing) with a plugin and it has two taxonomies. It all seems to work as expected.
I can display individual posts from the CPT using single-listing.php but I ...
0
votes
0answers
45 views
Wordpress Rewrite Url with arugments
I did not find any useful tips from google search and I wrote the same question in wordpress forum but there is no reply
I am writing the complete step here
First step I am redirect page to custom ...
0
votes
0answers
23 views
Group Date Archives by term_id
I am trying to group posts in Yearly date archive page by term:
here is the code I am using :
<?php
$terms = get_terms("publicationcat");
$count = count($terms);
if ( ...
0
votes
1answer
60 views
stdClass::$labels /wp-includes/general-template.php undefined
In my <title> tags I am getting undefined on a custom taxonomy in a custom post type and im struggling to find a way to set it.
<title><br />
<b>Notice</b>: Undefined ...
1
vote
0answers
118 views
Adding Sticky functionality to Custom Post Type Archives
In WordPress, Custom Post Types do not have Sticky functionality as a core feature. It is possible, I'm sure, to create it in certain cases—and I'm working on a project that requires it for ...
0
votes
1answer
117 views
Custom Post Type Archive Page not showing
I have a category on my website called 'profiles' I am in the process of moving this category to a custom post type called 'profiles'.
My problem is I cannot get the archive page to show for this ...
-1
votes
1answer
72 views
Add read more to the_content
Hi I have a custom post type that i've truncated on the archives pages using this:
function limit_the_content($content){
$word_limit = 35;
$words = explode(' ', $content);
return implode(' ', ...
0
votes
1answer
57 views
Archive-Custom-Post-Type order by Event Date, ASC, and hide events that have completed
I am building a site for a personal project and I have a series of Events created via a Custom Post Type.
I then need these events to be displayed by a custom meta value (Event Start Date) and in ASC ...
0
votes
1answer
59 views
Order Custom Post Type Archive by multiple values in functions.php
Sorry in advance for my limited PHP skills.
I saw this post and the function helped to fix my pagination problem for the archives pages for my custom post type. pagination doesn't show up for ...
5
votes
1answer
70 views
How do you create an archive for a custom post type from a plugin?
So I'm creating a plugin to create buildings that list condos for sale. The simplest way to do this was to just create a custom post type for the buildings and then the listings but I'm now stuck on ...
0
votes
1answer
70 views
My archive-posttype.php template is not loading
I'm trying to create an archive-photos.php template for my photos custom post type. The problem I have is that when I view the page it is the archive.php template that is used, not the ...
0
votes
1answer
104 views
Custom post type category permalinks and archive pages
I know this question was brought up before, but I can't seem to get things working using any of the proposed solutions. This is how I have my custom post types and categories setup:
Custom Post Type: ...
0
votes
1answer
40 views
Permalinks that go to a specific template
This is actually my first question here, so hello to everybody in this community!
I have developed a theme with a custom post type and a template (lets call it "my_template.php") that shows posts of ...
-1
votes
1answer
101 views
Custom Post Type Archive Title Lowercase
Is there any reason that my custom post type archive title is all lower-case even though 'name' is defined as sentence-case?
Here is the post type function I'm using:
function resources_post_type() ...
0
votes
1answer
74 views
Customing Annual Archive plugin
I'm using the Annual Archive plugin which shows the year in the sidebar.
I want to display in the dropdown only the years that have posts in category 17.
How can i achive this?
My code is below...
...
5
votes
1answer
233 views
Custom post type yearly/ monthly archive permalinks
I have a custom post type "news" in my Wordpress site. I am using Advanced Custom Fields plugin to add meta data to each post.
I want to create an array of news items as an archive:
[2013]
...
0
votes
1answer
53 views
Template file renders on local install, not on web
I've been building a website that involves a child theme of Twenty Twelve and a custom post type with associated custom taxonomy, "area". I've built a template file (cribbed from code found elsewhere) ...
0
votes
2answers
269 views
How do I Use Multiple Loops with WP_Query?
Hi I am trying to add post from a certain taxonomy term to a cpt loop. The code below is the code I am using.
<?php // Create empty array to store post ids in
$excludes = array();
...
0
votes
0answers
63 views
Link not working on archive pages [closed]
I am using this code to add links on top of custom post type archive page. Links are showing up but not working and not clickable.
function theme_filters() {
if(is_post_type_archive()) { ?>
...
0
votes
1answer
39 views
Create a Page Templete to Display Table Of Content for Custom Taxonomies
I have created a custom post type named "Training" & a Custom Taxonomy for the same named "Table Of Content"
I need to create a Page template to display Table Of Content Something like this
...
0
votes
1answer
85 views
Make Next and Previous on single-$posttype.php use the same order as archive-$posttype.php
I have a custom post type events and am displaying these events using archive-events.php and single-events.php from the template hierarchy. I have a custom query in archive-events.php
$paged = ( ...
2
votes
1answer
91 views
Archive template
I have several custom post types and we need to create separate archive templates for these. I tried the following advice, but it's still using the default archive template.
In the form of the ...
0
votes
1answer
104 views
Pagination does not work on Custom Post Type archive while trying to get load more function working
Im trying to get a load more function to work with a custom post type on an archive page.
I use this plugin and customized it a bit so it works with a custom post type.
...
0
votes
0answers
32 views
Custom page type archive page - content controlled by page? [closed]
I have a custom page type called staff, I have staff-archive.php and I have the custom page type set to use an archive page.
All is good with that.
I have a page called staff, and I have the ...
1
vote
1answer
70 views
Custom Post Type archive as front page
I basically have the same problem like in this question, but the correct answer doesn't work for me. Yes, I get a list of posts from my CPT, but the archive-{post-type}.php is not used to render the ...
1
vote
1answer
314 views
Add the current menu item CSS class to a custom page type archive in Wordpress menu
I've been reading a lot about this but couldn't find a solution.
Basically I'm trying to show a current menu item on a dynamic page that is created by a custom page type archive.
The default menu ...
2
votes
1answer
619 views
Get custom post type slug for an archive page
How do I discover the custom post type slug when I'm on an archive page?
For instance if /products/ fires the archive-products.php template, how (pragmatically) do I get the post type slug?
Thanks
0
votes
1answer
160 views
CPT archive page - show one post from each taxonomy term
Basic loop question:
I have a custom post type with a custom taxonomy and 3 terms.
On the archive page (archive-custom_post_type.php), I would like to display one post from each taxonomy term.
Is ...
0
votes
2answers
238 views
paginate function in archive for custom-post-type
I have a custom-post-type for events and use the normal archive.php template to list all previous events.
The thing is that I use a custom query for my event-post-type inside archive.php like this …
...
1
vote
1answer
111 views
Custom-post-type-archive: posts sorted/filtered by year?
I have a custom-post-type wr_event whose posts are sorted by meta_key "event_date".
Therefore I have this handy function …
function get_event_list( $latest = true, $order = 'ASC' ) {
echo ...
0
votes
0answers
61 views
Get post ID for custom type [closed]
I got following code in functions.php:
add_action('wp_head', 'SEOBasicGen', 0);
function SEOBasicGen() {
global $post;
print $post->ID;
}
If regular post is displayed, I got ID. If I try ...
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 ...
0
votes
1answer
30 views
Get single posts archive information
I noticed something when I var_dump(); on a single page in wordpress. Its not linked to its archive page at all or any parents. Is it at all possible to get the single pages archive information as if ...



