Filters

Description

rtmedia_editor_attribute_label


Filter to change Media Attribute label in uploader view.

add_filter('rtmedia_editor_attribute_label','custom_rtmedia_editor_attribute_label');

function custom_rtmedia_editor_attribute_label( $label ){
    $label = "Attribute Tags";
    return $label;
}