Redirect_404_Vehicles::is_request_for_vehicle( WP $wp_obj )
Is the current request for a vehicle?
On This Page
Parameters Parameters
- $wp_obj
-
(WP) (Required) Current WordPress environment instance (passed by reference).
Return Return
(bool)
Source Source
File: includes/class-redirect-404-vehicles.php
protected function is_request_for_vehicle( $wp_obj ) { // $wp_obj is not a WP_Query and does not have a get() method. return isset( $wp_obj->query_vars ) && isset( $wp_obj->query_vars['post_type'] ) && INVP::POST_TYPE === $wp_obj->query_vars['post_type']; }
Expand full source codeCollapse full source codeView on Github