Tagged Questions
0
votes
1answer
95 views
Custom columns for taxonomy list table
I have the following code to add a new column to my taxonomy edit screen (edit-tags.php?taxonomy=book_place&post_type=books)
function add_book_place_columns($columns){
$columns['foo'] = ...
0
votes
1answer
264 views
add_action 'manage_posts_custom_column' in a class [closed]
I think this may be more of a general php question but I am posting it here as it relates to a WP function. I am having some issues with an add_action on manage_posts_custom_column inside a class. ...