Advertisement
verygoodplugins

Untitled

Mar 19th, 2020
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function switch_object_type() {
  2.  
  3.     if ( isset( $_GET['type'] ) && $_GET['type'] == 'affiliate' ) {
  4.  
  5.         add_filter( 'wpf_crm_object_type', function( $object_type ) {
  6.             return 2; // no idea what this should be
  7.         } );
  8.  
  9.     }
  10.  
  11. }
  12.  
  13. add_action( 'wp_ajax_nopriv_wpf_add_user', 'switch_object_type', 5 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement