Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Taxonomy Quick Edit field – Display admin column

/**
 * Retrieve value for our custom column
 * 
 * @param string $string      Blank string.
 * @param string $column_name Name of the column.
 * @param int    $term_id     Term ID.
 */
function gwp_category_column_display( $string = '', $column_name, $term_id ) {
    return esc_html( get_term_meta( $term_id, $column_name, true ) ); // XSS ok.
}
add_filter( 'manage_edition_custom_column', 'gwp_category_column_display', 10, 3 );