Recent

crp_tracking_url filter Pro only

crp_tracking_url

Filter the URL with tracking parameters.

Type: filter
Since: 4.0.0
Source: includes/class-pro.php line 329

Parameters

TypeNameDescription
string$urlThe post URL with tracking parameters.
string$original_urlThe original post URL.
\WP_Post$resultThe post object.
\WP_Post$source_postThe source post object.
array$argsArguments array.

Usage

add_filter( 'crp_tracking_url', function($url, $original_url, $result, $source_post, $args) {
    // ...
    return $url;
} );