Display list of active affiliates to customers

For my site, I am requiring they have an affiliate ID, name or URL in order to register for membership. Can you tell me how is that possible?
Is there a shortcode I can embed on a page that provides this information
I would like it to list the affiliates name and their ID

thanks


Comments

One response to “Display list of active affiliates to customers”

  1. Hi,
    this code can help you. You need to add this code in your functions.php file. Then you can use the shortcode. If you need to show the ID, then change:
    $output .= '' . $affiliate['name'] . '';
    to
    $output .= '' . $affiliate['id'] . "-" . $affiliate['name'] . '';
    cheers

Share