rtmedia_actions_after_comments_form

Description

This action occurs after media comment form and comment lists.

Example

This can be use to append anything below comment form on media popup and single media page.

function rtmedia_actions_after_comments_form_callback (){
    echo wp_get_attachment_image( 433, 'medium' );
}
add_action('rtmedia_actions_after_comments_form', 'rtmedia_actions_after_comments_form_callback');

time