Created
August 9, 2021 08:09
-
-
Save alamgircsebd/258fcc79ee75710eb729deb82c4a1d94 to your computer and use it in GitHub Desktop.
Dokan product description media buttons added
This file contains 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
/** | |
* Dokan product description media buttons added | |
* | |
* @param array $args | |
* | |
* @return array $args | |
*/ | |
function dokan_product_description_media_button_added( $args ) { | |
$args['media_buttons'] = true; | |
return $args; | |
} | |
add_filter( 'dokan_product_short_description', 'dokan_product_description_media_button_added' ); | |
add_filter( 'dokan_product_description', 'dokan_product_description_media_button_added' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment