This code is working fine, just want to make sure I'm ok with hardcoding the href to the category edit screen with...
"edit-tags.php?action=edit&taxonomy=category&post_type=post&tag_ID='.$cat_id.'"
Or is there a method I should call to get the category edit link dynamically (in case the call ever gets changed)?
//add the filter in order to add custom columns to the category manager
add_filter('manage_category_custom_column', 'display_cat_columns', 10, 3);
//This function outputs the custom category image onto each row of the category manager grid.
function display_cat_columns($arg1, $column_name, $cat_id){
if ('ce4_cat_image' == $column_name) {
return '<a href="edit-tags.php?action=edit&taxonomy=category&post_type=post&tag_ID='.$cat_id.'">get_category_thumbnail_admin($cat_id, 'thumbnail').'</a>';}
}
