rtmedia_after_media_gallery_title

Description

Add note for users under media gallery.

For Example

Add the following code in your theme’s functions.php file:

function action_to_add_note_after_media_gallery_title(){
        echo 'Add your note here...';
}
add_action('rtmedia_after_media_gallery_title','action_to_add_note_after_media_gallery_title');

You will see a note like this.

action-to-add-a-note

Thank you.