get_results( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = %s AND meta_value = %s", '_event_bridge_for_activitypub_accept_of_follow', esc_sql( $accept_id ) ) ); // If no event source with that accept ID is found return. if ( empty( $results ) || ! $results ) { return; } $post_id = reset( $results )->post_id; \delete_post_meta( $post_id, '_event_bridge_for_activitypub_accept_of_follow' ); } }