admin管理员组

文章数量:1202373

I'm trying to pull a custom post type name/title out for use in the breadcrumb of a single-[cpt].php template file.

In the archive-[cpt].php I can use post_type_archive_title() and it echo the name. How would I get this same title in a single view?

Thanks!

I've trawled though the codex and haven't seen a function, but might have missed it!

I'm trying to pull a custom post type name/title out for use in the breadcrumb of a single-[cpt].php template file.

In the archive-[cpt].php I can use post_type_archive_title() and it echo the name. How would I get this same title in a single view?

Thanks!

I've trawled though the codex and haven't seen a function, but might have missed it!

Share Improve this question asked Feb 1, 2012 at 15:10 Mere DevelopmentMere Development 3091 gold badge6 silver badges20 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 6

There doesn't appear to be one, but the following should work:

//Get post type    
$post_type_obj = get_post_type_object( get_post_type() );
//Get post type's label
$title = apply_filters('post_type_archive_title', $post_type_obj->labels->name );        
$archive_title = apply_filters('post_type_archive_title', $post_type_obj->labels->all_items);

This can, for instance, be put in one generic header template that is applied to all single-cpt files. With is_single() it can be put in an even more generic header template.

For a complete list of labels, see http://codex.wordpress.org/Function_Reference/register_post_type#Arguments

本文标签: custom post typesNeed posttypearchivetitle function but in 39single39