Title: Display Post Type Key
Last modified: April 10, 2025

---

# Display Post Type Key

 *  [stiviniii](https://wordpress.org/support/users/stiviniii/)
 * (@stiviniii)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/display-post-type-key/)
 * How can I display post type Key before displaying current page
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fdisplay-post-type-key%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [Phi Phan](https://wordpress.org/support/users/mr2p/)
 * (@mr2p)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/display-post-type-key/#post-18409843)
 * Hi [@stiviniii](https://wordpress.org/support/users/stiviniii/),
 * If your post type has archive, the post type name will be added as a prefix to
   the current post.
 * If you’d like to control this behavior through code, here’s a snippet to achieve
   it:
 *     ```wp-block-code
       add_action(  'breadcrumb_block_single_prepend',  function ( $post, $breadcrumbs_instance ) {    if ( 'your_post_type' === $post->post_type ) {      // Add your custom item here.      $breadcrumbs_instance->add_item( 'The title', 'the_url' );    }  },  10,  2);
       ```
   
 * Best, Phi.

Viewing 1 replies (of 1 total)

The topic ‘Display Post Type Key’ is closed to new replies.

 * ![](https://ps.w.org/breadcrumb-block/assets/icon.svg?rev=2802777)
 * [Breadcrumb Block](https://wordpress.org/plugins/breadcrumb-block/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/breadcrumb-block/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/breadcrumb-block/)
 * [Active Topics](https://wordpress.org/support/plugin/breadcrumb-block/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/breadcrumb-block/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/breadcrumb-block/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Phi Phan](https://wordpress.org/support/users/mr2p/)
 * Last activity: [1 year, 2 months ago](https://wordpress.org/support/topic/display-post-type-key/#post-18409843)
 * Status: not a support question