Vehicle_URLs_By_VIN::add_hooks()
Adds hooks that power the URL redirects.
Return Return
(void)
Source Source
File: includes/class-vehicle-urls-by-vin.php
public function add_hooks() {
add_filter( 'invp_rewrite_rules', array( $this, 'add_vin_rewrite_rule' ) );
add_filter( 'query_vars', array( $this, 'add_query_vars' ) );
add_action( 'template_redirect', array( $this, 'redirect_vin_urls' ) );
}
Expand full source codeCollapse full source codeView on Github