Skip to content

Instantly share code, notes, and snippets.

@alexstandiford
Created April 2, 2020 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexstandiford/9d782151f26e456c9b2f0628f7dc57a4 to your computer and use it in GitHub Desktop.
Save alexstandiford/9d782151f26e456c9b2f0628f7dc57a4 to your computer and use it in GitHub Desktop.
Create a custom Referral Type in AffiliateWP
<?php
add_action('affwp_referral_type_init',function( $registry ){
$registry->register_type( 'custom_type', array(
'label' => __( 'Custom Type', 'text-domain' ),
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment