taxonomies_custom_column( $content, $column, $term_id )
This function is responsible for displaying custom content in the custom columns of the taxonomy list table in the admin area. It checks if a corresponding child class method exists and calls it to output the content, otherwise it gets field value as the default action
Plugin
Namespace
Launchpad
Parameter
string
$column
The identifier of the custom column being displayed.
int
$post_id
The ID of the post being displayed.
Return
void
Source
File: \includes\class-lp-cpt.php
public function taxonomies_custom_column( $content, $column, $term_id ) {
if( method_exists( $this, "taxonomy_column_{$column}" ) )
$this->{"taxonomy_column_{$column}"}( $content, $column, $term_id );
else
$this->taxonomy_column_default( $content, $column, $term_id );
}