-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_use_featured_image
github-actions[bot] edited this page Jun 20, 2026
·
5 revisions
Filter whether a post should use its featured image to post with a status update.
add_filter(
'wpt_use_featured_image',
function(
bool $use,
int $post_ID
) {
// Your code here.
return $use;
},
10,
2
);-
bool$useTrue to use the featured image. -
int$post_IDPost ID.
bool
apply_filters( 'wpt_use_featured_image', true, $post_ID )