term_id, '_home_featured', true); $featured_image = get_term_meta($term->term_id, '_featured_image', true); ?> type="checkbox" />

__('Home Featured' , 'affiliatepress'))); } add_filter('manage_edit-category_columns', 'affiliatepress_featured_category_columns'); // Add the value to the column function affiliatepress_featured_category_columns_values($deprecated, $column_name, $term_id) { if ($column_name === 'featured') { $home_featured = get_term_meta($term_id, '_home_featured', true); if ($home_featured === "on") { echo _e('Yes', 'affiliatepress'); } else { echo _e('No', 'affiliatepress'); } } } add_action('manage_category_custom_column', 'affiliatepress_featured_category_columns_values', 10, 3);