Description
Enable Reply in Media that are being uploaded from the Comment Media Section
Example
add_filter('rtmedia_disable_media_in_commented_media', 'rtmedia_disable_media_in_commented_media_callback', 10, 1);
function rtmedia_disable_media_in_commented_media_callback( $value ){
return false;
}