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/plugins) you correctly see all the posts of that type.
In archive.php, how can I find out which custom post type the user is looking at right now?
I tried the following:
<?php
global $post;
$postTypeLabels = get_post_type_labels(get_post_type_object($post));
echo var_export($postTypeLabels);
?>
But I'm getting the this:
Post name is stdClass::__set_state(
array( 'name' => 'Posts',
'singular_name' => 'Post',
'add_new' => 'Add New',
'add_new_item' => 'Add New Post',
'edit_item' => 'Edit Post',
'new_item' => 'New Post',
'view_item' => 'View Post',
'search_items' => 'Search Posts',
'not_found' => 'No posts found.',
'not_found_in_trash' => 'No posts found in Trash.',
'parent_item_colon' => NULL,
'all_items' => 'All Posts',
'menu_name' => 'Posts',
'name_admin_bar' => NULL,
)
)
I'm guessing that, since I am in an archive page, the $post is not correct.
P.S. I know that I can create archive-plugins.php for the plugins archive. Unfortunately, I have installed a theme that, as far as I know, kinda prevents that. So this is not an option.
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/plugins) you correctly see all the posts of that type.
In archive.php, how can I find out which custom post type the user is looking at right now?
I tried the following:
<?php
global $post;
$postTypeLabels = get_post_type_labels(get_post_type_object($post));
echo var_export($postTypeLabels);
?>
But I'm getting the this:
Post name is stdClass::__set_state(
array( 'name' => 'Posts',
'singular_name' => 'Post',
'add_new' => 'Add New',
'add_new_item' => 'Add New Post',
'edit_item' => 'Edit Post',
'new_item' => 'New Post',
'view_item' => 'View Post',
'search_items' => 'Search Posts',
'not_found' => 'No posts found.',
'not_found_in_trash' => 'No posts found in Trash.',
'parent_item_colon' => NULL,
'all_items' => 'All Posts',
'menu_name' => 'Posts',
'name_admin_bar' => NULL,
)
)
I'm guessing that, since I am in an archive page, the $post is not correct.
P.S. I know that I can create archive-plugins.php for the plugins archive. Unfortunately, I have installed a theme that, as far as I know, kinda prevents that. So this is not an option.
Share Improve this question edited Mar 17, 2013 at 19:08 s_ha_dum 65.6k13 gold badges84 silver badges174 bronze badges asked Mar 17, 2013 at 19:02 pekpek 1831 gold badge1 silver badge5 bronze badges6 Answers
Reset to default 15There are a several of ways to do this. Put:
var_dump($wp_query->query,get_queried_object()); die;
In your archive.php
and you should see two of those ways.
$wp_query->query
will have post_type
component for custom post types. That will not be there for post
post types. get_queried_object
will return quite a bit of data for custom post types but null for post
post type.
There are also some related template tags that might help. is_post_type_archive
comes to mind.
Between those you should have the information you need to put together whatever logic you need. It is not clear from you question what the end result is supposed to be, so I can't really write much.
Since you specifically named archive.php
that is what I tested in. You may need different code for some other template, especially with get_queried_object
which returns very different information depending on the context.
Here is the function you want:
/**
* Get the current archive post type name (e.g: post, page, product).
*
* @return String|Boolean The archive post type name or false if not in an archive page.
*/
function get_archive_post_type() {
return is_archive() ? get_queried_object()->name : false;
}
I see this in a few comments on the accepted answer, but wanted to make this point clear for others skimming over these answers: The global $wp_query
object is more reliable for getting the archive's post type. Specifically from $wp_query->query['post_type']
.
You can use get_queried_object()
but it has caveats. Namely if you have other query parameters like taxonomy terms. In that case get_queried_object()
will return a WP_Term object instead of the post type you are probably looking for.
So if the archive has a clean query for a post type, then get_queried_object()
will work. But for more reliability use the global $wp_query
object.
Here is a function you can use in your theme for this:
/*
* PURPOSE : If there are zero results (or other parameters) in the archive query, get_post_type() isn't reliable for knowing what the archive's post type is. This function gets the post type from the global $wp_query object instead.
* PARAMS : n/a
* RETURNS : boolean / string - the slug for the post type fromm $wp_query, or false if that is not found.
* NOTES :
*/
function jp_get_archive_post_type(){
$post_type = false;
global $wp_query;
if( isset($wp_query->query['post_type']) ){
$post_type = $wp_query->query['post_type'];
}
return $post_type;
}
die(var_dump(get_taxonomy(get_queried_object()->taxonomy)->object_type));
I thinks that is the answer for your question.
Happy coding!!!
Why not just use get_query_var('post_type')
?
https://developer.wordpress/reference/functions/get_query_var/
No other nice option rather than template making!
Or Including a template file when that custom post type archive (according to its url) is accessed.
See further links for more info:
http://codex.wordpress/Function_Reference/load_template
wordpress - load a template based on the URI
http://www.mihaivalentin/wordpress-tutorial-load-the-template-you-want-with-template_redirect/