Taxonomy.php 264 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php namespace ACA\Pods\Column; use ACA\Pods\Column; class Taxonomy extends Column { protected function get_pod_name() { if ( ! method_exists( $this->list_screen, 'get_taxonomy' ) ) { return false; } return $this->list_screen->get_taxonomy(); } }