@tinypixelco/wp-react-hooks
Overview
Block
Post
usePostTemplateusePostTitleusePostTypeImportUsageExample
Editor
Data

usePostType

The usePostType hook returns the current post's posttype.

Import

import {usePostType} from '@tinypixelco/wp-react-hooks'

Usage

const [postType] = usePostType()

Example

import {usePostType} from '@tinypixelco/wp-react-hooks'
const component = () => {
const [postType] = usePostType()
return (
<div>
Post type: {postType || ''}
</div>
)
}