-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_exclude_post_types
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Exclude post types from the list of available types to post to X.com.
add_filter(
'wpt_exclude_post_types',
function( array $exclusions ) {
// Your code here.
return $exclusions;
}
);-
array$exclusionsArray of post type name slugs to exclude.
array
apply_filters( 'wpt_exclude_post_types', $exclusions )