wpseek.com
A WordPress-centric search engine for devs and theme authors



is_post_type_viewable › WordPress Filter Hooks

Since5.9.0
Deprecatedn/a
apply_filters( 'is_post_type_viewable', $is_viewable, $post_type )
Parameters: (2)
  • () is_viewable Whether the post type is "viewable" (strict type).
    Required: Yes
  • () post_type Post type object.
    Required: Yes
Defined at:
Codex:

Filters whether a post type is considered "viewable".

The returned filtered value must be a boolean type to ensure `is_post_type_viewable()` only returns a boolean. This strictness is by design to maintain backwards-compatibility and guard against potential type errors in PHP 8.1+. Non-boolean values (even falsey and truthy values) will result in the function returning false.




Source

return true === apply_filters( 'is_post_type_viewable', $is_viewable, $post_type );