Provider::hydrate_provisional_post( string $query_sql )
Hooks on the query filter to hydrate a provisional post instance and accessory data if required.
Contents
Parameters
- $query_sql
-
(string) (Required) The query SQL to parse.
Return
(string) The filtered query.
Source
File: src/Events_Pro/Custom_Tables/V1/WP_Query/Provider.php
public function hydrate_provisional_post( $query_sql ) {
return $this->noop ?
$query_sql
: $this->container->make( Provisional_Post::class )->hydrate_provisional_post_query( $query_sql );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |