Is there a plugin to record querystring parameters for a page (for customer tracking)? [closed]
WP is not really interested in what you add to the url string. But you could extract the url with native php functions and add your parts to the global wp_query; object using add_query_arg(). Then you can receive it via get_query_var() anywhere you need it. You could also use a hook to do the adding-job: … Read more