post_type=wpvr_video&wpvr_video=fury-platinum-16u-vs-tn-fury-ny-premier-briggs-16u-%25e2%258f%25b0-1230-pm-at-bat-13&name=fury-platinum-16u-vs-tn-fury-ny-premier-briggs-16u-%25e2%258f%25b0-1230-pm-at-bat-13
video/fury-platinum-16u-vs-tn-fury-ny-premier-briggs-16u-%e2%8f%b0-1230-pm-at-bat-13
post_type=wpvr_video&slug=video&wpvr_video=fury-platinum-16u-vs-tn-fury-ny-premier-briggs-16u-%25e2%258f%25b0-1230-pm-at-bat-13&page=
/** * Adds a query variable to the list of public query variables. * * @since 2.1.0 * * @param string $qv Query variable name. */ Defined in <ROOT>/wp-includes/class-wp.php:93
/** * Removes a query variable from a list of public query variables. * * @since 4.5.0 * * @param string $name Query variable name. */ Defined in <ROOT>/wp-includes/class-wp.php:106
/** * Sets the value of a query variable. * * @since 2.3.0 * * @param string $key Query variable name. * @param mixed $value Query variable value. */ Defined in <ROOT>/wp-includes/class-wp.php:118
/** * Parses the request to find the correct WordPress query. * * Sets up the query variables based on the request. There are also many * filters and actions that can be used to further manipulate the result. * * @since 2.0.0 * @since 6.0.0 A return value was added. * * @global WP_Rewrite $wp_rewrite WordPress rewrite component. * * @param array|string $extra_query_vars Set the extra query variables. * @return bool Whether the request was parsed. */ Defined in <ROOT>/wp-includes/class-wp.php:136
/** * Sends additional HTTP headers for caching, content type, etc. * * Sets the Content-Type header. Sets the 'error' status (if passed) and optionally exits. * If showing a feed, it will also send Last-Modified, ETag, and 304 status if needed. * * @since 2.0.0 * @since 4.4.0 `X-Pingback` header is added conditionally for single posts that allow pings. * @since 6.1.0 Runs after posts have been queried. * * @global WP_Query $wp_query WordPress Query object. */ Defined in <ROOT>/wp-includes/class-wp.php:435
/** * Sets the query string property based off of the query variable property. * * The {@see 'query_string'} filter is deprecated, but still works. Plugins should * use the {@see 'request'} filter instead. * * @since 2.0.0 */ Defined in <ROOT>/wp-includes/class-wp.php:601
/** * Set up the WordPress Globals. * * The query_vars property will be extracted to the GLOBALS. So care should * be taken when naming global variables that might interfere with the * WordPress environment. * * @since 2.0.0 * * @global WP_Query $wp_query WordPress Query object. * @global string $query_string Query string for the loop. * @global array $posts The found posts. * @global WP_Post|null $post The current post, if available. * @global string $request The SQL statement for the request. * @global int $more Only set, if single page or post. * @global int $single If single page or post. Only set, if single page or post. * @global WP_User $authordata Only set, if author archive. */ Defined in <ROOT>/wp-includes/class-wp.php:654
/** * Set up the current user. * * @since 2.0.0 */ Defined in <ROOT>/wp-includes/class-wp.php:682
/** * Set up the Loop based on the query variables. * * @since 2.0.0 * * @global WP_Query $wp_the_query WordPress Query object. */ Defined in <ROOT>/wp-includes/class-wp.php:693
/** * Set the Headers for 404, if nothing is found for requested URL. * * Issue a 404 if a request doesn't match any posts and doesn't match any object * (e.g. an existing-but-empty category, tag, author) and a 404 was not already issued, * and if the request was not a search or the homepage. * * Otherwise, issue a 200. * * This sets headers after posts have been queried. handle_404() really means "handle status". * By inspecting the result of querying posts, seemingly successful requests can be switched to * a 404 so that canonical redirection logic can kick in. * * @since 2.0.0 * * @global WP_Query $wp_query WordPress Query object. */ Defined in <ROOT>/wp-includes/class-wp.php:716
/** * Sets up all of the variables required by the WordPress environment. * * The action {@see 'wp'} has one parameter that references the WP object. It * allows for accessing the properties and methods to further manipulate the * object. * * @since 2.0.0 * * @param string|array $query_args Passed to parse_request(). */ Defined in <ROOT>/wp-includes/class-wp.php:810