Last active
October 12, 2018 19:17
-
-
Save anik/3d36f81a0cb13b3cfc9991590e0445b6 to your computer and use it in GitHub Desktop.
tests
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
# Addon Generate. | |
add_filter( 'wppb_available_addons', 'wppb_dokan_addons_function' ); | |
if ( ! function_exists('wppb_dokan_addons_function')){ | |
function wppb_dokan_addons_function($addons){ | |
$addons[] = 'WPPB_Dokan_Shortcode'; | |
return $addons; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment