Advertisement
verygoodplugins

Untitled

Jan 5th, 2023
911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function set_affiliate_cookie() {
  2.  
  3.     if ( isset( $_GET['affiliate'] ) ) {
  4.         setcookie( 'is_aff', intval( $_GET['affiliate'] ), time() + ( 30 * DAY_IN_SECONDS ), COOKIEPATH, 'thesacredscience.com' );
  5.     }
  6. }
  7.  
  8. add_action( 'init', 'set_affiliate_cookie', 20 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement