-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_allowed_post_types
github-actions[bot] edited this page Jun 19, 2026
·
2 revisions
Return array of post types that can be sent as status updates.
add_filter(
'wpt_allowed_post_types',
function(
array $types,
array $post_type_settings
) {
// Your code here.
return $types;
},
10,
2
);-
array$typesArray of post type names enabled for status updates either when editing or publishing. -
array$post_type_settingsMultidimensional array of post types and post type settings.
array
apply_filters( 'wpt_allowed_post_types', $allowed_types, $post_type_settings )