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



get_object_subtype_{$object_type} › WordPress Filter Hooks

Since4.9.8
Deprecatedn/a
apply_filters( "get_object_subtype_{$object_type}", $object_subtype, $object_id )
Parameters: (2)
  • () object_subtype Object subtype or empty string to override.
    Required: Yes
  • () object_id ID of the object to get the subtype for.
    Required: Yes
Defined at:
Codex:

Filters the object subtype identifier.

The dynamic portion of the hook name, `$object_type`, refers to the meta object type (blog, post, comment, term, user, or any other type with an associated meta table). Possible hook names include: - `get_object_subtype_blog` - `get_object_subtype_post` - `get_object_subtype_comment` - `get_object_subtype_term` - `get_object_subtype_user`




Source

return apply_filters( "get_object_subtype_{$object_type}", $object_subtype, $object_id );