Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active December 31, 2022 15:30
Show Gist options
  • Save frankyonnetti/5944880 to your computer and use it in GitHub Desktop.
Save frankyonnetti/5944880 to your computer and use it in GitHub Desktop.
WordPress - get post type name #wordpress
<?php
$post_type = get_post_type_object( get_post_type($post) );
echo $post_type->labels->name;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment