Title: custom image
Last modified: August 30, 2016

---

# custom image

 *  [sonijoykolenchery](https://wordpress.org/support/users/sonijoykolenchery/)
 * (@sonijoykolenchery)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/custom-image-4/)
 * How to add custom images as custom post icon?
 * [https://wordpress.org/plugins/types/](https://wordpress.org/plugins/types/)

Viewing 1 replies (of 1 total)

 *  [Marcin Pietrzak](https://wordpress.org/support/users/iworks/)
 * (@iworks)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/custom-image-4/#post-6444956)
 * Dear sonijoykolenchery
 * On Custom Post edit screen use field “Menu icon” in “Visibility” box.
 * [http://iworks.pl/wp-content/uploads/2015/08/screenshot-35.png](http://iworks.pl/wp-content/uploads/2015/08/screenshot-35.png)
 * But this option is deprecated and will be removed in Types 1.9
 * Instead (it works now too) use filter `wpcf_type`:
 *     ```
       <?php
       add_filter('wpcf_type', 'my_icon_wpcf_type', 10, 2);
       function my_icon_wpcf_type($custom_post_config, $custom_post) {
           if ( 'my_post_type' == $custom_post ) {
               $custom_post_config['menu_icon'] = 'http://example.com/example.png';
           }
           return $custom_post_config;
       }
       ```
   
 * Cheers,
    Marcin

Viewing 1 replies (of 1 total)

The topic ‘custom image’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/types_ced1d3.svg)
 * [Toolset Types - Custom Post Types, Custom Fields and Taxonomies](https://wordpress.org/plugins/types/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/types/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/types/)
 * [Active Topics](https://wordpress.org/support/plugin/types/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/types/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/types/reviews/)

## Tags

 * [add_filter](https://wordpress.org/support/topic-tag/add_filter/)
 * [custom post type](https://wordpress.org/support/topic-tag/custom-post-type/)
 * [menu icon](https://wordpress.org/support/topic-tag/menu-icon/)

 * 1 reply
 * 2 participants
 * Last reply from: [Marcin Pietrzak](https://wordpress.org/support/users/iworks/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/custom-image-4/#post-6444956)
 * Status: not resolved