-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_show_last_update
github-actions[bot] edited this page Jun 20, 2026
·
4 revisions
Disable the admin notice that shows the last sent update.
add_filter(
'wpt_show_last_update',
function( bool $show ) {
// Your code here.
return $show;
}
);-
bool$showtrue to show; false to hide.
bool
apply_filters( 'wpt_show_last_update', true )