_wp_dashboard_recent_comments_row example

$comments_query['offset'] += $comments_query['number'];
        $comments_query['number']  = $total_items * 10;
    }

    if ( $comments ) {
        echo '<div id="latest-comments" class="activity-block table-view-list">';
        echo '<h3>' . __( 'Recent Comments' ) . '</h3>';

        echo '<ul id="the-comment-list" data-wp-lists="list:comment">';
        foreach ( $comments as $comment ) {
            _wp_dashboard_recent_comments_row( $comment );
        }
        echo '</ul>';

        if ( current_user_can( 'edit_posts' ) ) {
            echo '<h3 class="screen-reader-text">' .
                /* translators: Hidden accessibility text. */
                __( 'View more comments' ) .
            '</h3>';
            _get_list_table( 'WP_Comments_List_Table' )->views();
        }

        
$comment = get_comment( $comment_id );

    if ( ! $comment ) {
        wp_die( 1 );
    }

    $position = ( isset( $_POST['position'] ) && (int) $_POST['position'] ) ? (int) $_POST['position'] : '-1';

    ob_start();
    if ( isset( $_REQUEST['mode'] ) && 'dashboard' === $_REQUEST['mode'] ) {
        require_once ABSPATH . 'wp-admin/includes/dashboard.php';
        _wp_dashboard_recent_comments_row( $comment );
    } else {
        if ( isset( $_REQUEST['mode'] ) && 'single' === $_REQUEST['mode'] ) {
            $wp_list_table = _get_list_table( 'WP_Post_Comments_List_Table', array( 'screen' => 'edit-comments' ) );
        } else {
            $wp_list_table = _get_list_table( 'WP_Comments_List_Table', array( 'screen' => 'edit-comments' ) );
        }
        $wp_list_table->single_row( $comment );
    }
    $comment_list_item = ob_get_clean();

    $response = array(
        
Home | Imprint | This part of the site doesn't use cookies.