Created
September 21, 2017 16:36
-
-
Save danielbitzer/b9c3548bd7f40c0829d7f083af37d305 to your computer and use it in GitHub Desktop.
AutomateWoo Refer A Friend - Custom Social Integration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'automatewoo/referrals/social_integrations/includes', 'my_custom_social_integrations' ); | |
/** | |
* @param array $includes | |
* @return array | |
*/ | |
function my_custom_social_integrations( $includes ) { | |
$includes[ 'vk' ] = dirname(__FILE__) . '/custom-social-integration.php'; | |
return $includes; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment