function wpse_80027_manage_columns($columns) {
// remove taxonomy column
unset($columns['taxonomy-YOUR_TAXONOMY_NAME']); // prepend taxonomy name with 'taxonomy-'
// add your custom column
$columns['CUSTOM_COLUMN_NAME'] = __('Column Name');
return $columns;
}
add_filter('manage_edit-sp_product_columns', 'wpse_80027_manage_columns');
function wpse_80027_add_img_column($name) {
if('CUSTOM_COLUMN_NAME' == $name) {
// echo your image in 'CUSTOM_COLUMN_NAME' column
echo '<img src="https://wordpress.stackexchange.com/questions/80027/image-name.png />";
}
}
add_action('manage_sp_product_posts_custom_column', 'wpse_80027_add_img_column');
Related Posts:
- Adding Category/Tag/Taxonomy Support to Images/Media
- Custom columns on edit-tags.php main page
- How to remove “Taxonomy name:” from wp_title
- How can I display parent and child taxonomies in separate drop downs?
- Custom taxonomy – custom sortable column
- Help With issue on pre_get_posts filter in taxonomy
- Taxonomies not appearing in columns on dashboard
- Filtering more than one term in a taxonomy in WP
- How to display term description in empty terms archive?
- Save Filter for Taxonomies
- How to filter WordPress search, excluding post in some custom taxonomies?
- Search by type posts and taxonomy
- How can I add buttons to a custom column in the taxonomy table?
- Current category link filter
- Make a taxonomy column sortable in the admin?
- How Can I Change a Taxonomy URL Based On The Originating URL?
- Simple Filter between multiple taxonomys
- Get parent and children taxonomy in different dropbox
- Query posts using custom taxonomy and selected terms
- Build filter for post-type + multi taxonomies + multi terms
- Advanced search redirecting to another page then filter further
- Display taxonomy with a maximum number of letters
- Drop-down filter doesn’t retrieve custom taxonomies
- Creating a drop-down and filter button for two custom taxonomies assigned to a custom post type
- Filter with two id of the same value CPT UI(taxanomies)
- Amend taxonomy to search in wordpress admin
- Include get_term_link inside search
- Keeping session instance of random display results over pagination breaks
- Add taxonomy column with meta field (ACF) content
- use apply_filters return taxonomies custom post type
- How to filter a page title with custom taxonomies
- Custom column into custom taxonomy (img tag with slug-name as file name)
- How to paginate with an query var appended to permalink?
- Sort Taxonomy List by Custom Values
- Trying to achieve row posts below category with multiple loops in custom tax
- get_the_term_list without links in 3.1
- get_term_children for immediate children only (not grandchildren)
- Creating a non-removable taxonomy term
- Is it possible to use one slug for Multiple Taxonomies?
- Is it possible to add taxonomies to user profiles?
- Get terms from multiple taxonomies
- How can I set a default listing order on the admin page for a custom taxonomy? (without plugins)
- get taxonomy terms for parent and child
- On Taxonomy Template page, want to add Post_Type
- Ajax filter with custom taxonomies
- Separator for multiple terms
- The next_posts_link() show me a aditional page in blank
- Help building array hierarchically with taxonomies (to get posts)
- What are terms and taxonomy, how they related to post and how these three are stored in database?
- Get multiple term objects by ids
- Echo custom taxonomy term name
- Next and Previous links on a single taxonomy page only link to same term
- Why does WP rename similar “term name”-slugs in separate taxonomies?
- How can I get WP to build a feed based on multiple taxonomy terms
- Getting the selected terms for custom taxonomies in the editor
- Change permalink of post if it belongs to custom taxonomy
- Set custom post type terms by id without knowing taxonomy
- How to determine the depth of a term in a custom taxonomy?
- How do I Use Multiple Loops with WP_Query?
- $wpdb query a post type within a specific taxonomy term while ordering posts by custom meta value?
- How to add contents of a custom field to a taxonomy term list?
- Google Map Shortcode for Custom Taxonomy/Post Types
- Querying two taxonomies
- How to target parent product category and its children using WooCommerce?
- Custom taxonomy query is empty. 0 = 1 in SQL
- How do you reorder the custom taxonomies on the right side of a custom post edit page?
- How to allow visitors to filter posts by multiple taxonomies
- What is the most efficient way of implementing a notification system? [closed]
- Update table wp_term_taxonomy.count after INSERT INTO via SQL
- Exclude taxonomy term from all loops, but having it on widget
- Get all attachments by custom taxonomy – term
- saving meta/custom field to tag
- Cannot delete or edit a single term in a custom taxonomy, taxonomy name is wrong?
- View the complete list of a taxonomy in the navigation menu
- Correctly order the hierarchy of custom taxonomy when displaying terms
- Archive page for custom taxonomy grouped by month
- Taxonomy page shows category in title
- Replace taxonomy term with an image in a custom loop
- Need to display custom taxonomy on single page – not working
- Show single Child Category on Custom Post
- Only display latest custom taxonomy post
- unable to save custom taxonomy terms in a custom-built metabox in wp-admin
- How to group non-hierarchical tags?
- Multiple Drop-Down custom taxonomies search
- How to combine taxonomies into URL?
- Taxonomy URL rewrite whilst keeping filtered posts?
- Add terms to a taxonomy archive from within the same taxonomy
- Fill New Taxonomies
- Store a value in global scope after init hook is fired
- How do I show the parent term on a custom taxonomy template (not the ID)?
- Display taxonomies for custom post type
- Custom Taxonomy – Dropdown
- How to show selected check box vendors on front end home page?
- custom taxonomy don’t return a value
- Where to put a migration script to switch post information?
- Gravity prerender taxonomy [closed]
- One taxonomy template for all categories?
- Error in Custom Taxonomy UI
- Remove ‘portfolio’ from URL
- Best approach of implementing multi-select/checkboxes for taxonomies?