From the details page of the WPCustom Category Image Plug-in : https://wordpress.org/support/plugin/wpcustom-category-image
1st – Go to Wp-Admin -> Posts(or post type) -> Categories (or taxonomy) to see Custom Category Image options.
2nd …depending on whether you want to show a single category image or display several in a loop –
//SINGLE
echo do_shortcode('[wp_custom_image_category onlysrc="https://wordpress.org/plugins/wpcustom-category-image/false" size="full" term_id="123" alt="alt :)"]');
//LOOP
foreach( get_categories(['hide_empty' => false]) as $category) {
echo $category->name . '<br>';
echo do_shortcode(sprintf('[wp_custom_image_category term_id="%s"]',$category->term_id));
}
In addition there is an example category template here –
Related Posts:
- Glossary with Custom Post Type
- List all custom post type posts from a given category?
- get_terms won’t display product_cat or any other custom taxonomies when specified
- Category page only displaying the posts from a custom type
- Custom Post Type Archive Page Filtering
- Allow user to set custom order to a list of custom taxonomies?
- How to get custom posts sub category link
- Conditional statement for if archive page has posts which contain certain taxonomies/categories/tags, show those terms
- Get parent category id from child category page for custom taxonomy
- Category archive in with conjunction with custom post type is empty
- How to Display Posts From Category Within a Custom Taxonomy?
- The Difference Between Categories and Tags and Taxonomies and Terms
- Get category if used in a custom post type
- Get terms for a specfic post from multiple taxonomies in custom post type
- Retrieve Custom Taxonomies with Description and Slug
- Using get_terms() to list terms from one custom taxonomy AND from one specific built-in category
- How to display custom taxonomy term specific post?
- get taxonomies from terms
- Cannot get to work tax_query array for terms
- Get a list of categories ids
- Using get_terms() as shortcode attribute
- Get terms by taxonomy AND post_type
- How to disable generation of default image sizes for some custom post types?
- Exclude a category from WP_Query
- Custom Post Types on Category Pages
- query multiple taxonomies
- wp_set_object_terms() is not replacing term, but creating a new one
- How to list all categories and tags in a page?
- show tags of custom post type ONLY
- Pagination not working with custom category template
- Retrieve a specific field from taxonomy term through advanced custom fields [closed]
- Anyway to assign custom post types to a specific category?
- List with categories, subcategories and posts of custom posttype
- Sort the main query in subcategories/terms?
- wp_list_categories and custom post types
- How to get source of custom meta image?
- Automatic category for a Custom Post Type
- How can i list custom post type categories?
- Query Custom Post by Category
- How to get the first term for the current taxonomy?
- Display Custom Category (taxonomy) Name in Custom Post Type
- next_post_link and previous_post_link in custom post type single page, in same non-custom category
- Showing Custom Content in a Nav Dropdown
- Show Post Count of a Category
- Set Custom Image Size Just For Specific Custom Post Type
- Filter categories of posts with checkboxes
- Use post as category
- Display all posts in main category and 1 subcategory
- uploading images to specified directories
- Custom Post Type archive loop separated by term, in specific term order
- Custom post type getting wrong categories and tags
- How to Create an Image Upload Box for Custom Posts?
- Display post as term id
- How to display “Category and Post_tag” component in a CPT Gutenberg edit screen?
- Remove CPT name from permalink but add %category% instead
- Set a checkmark in a category based on a URL-parameter
- I am having Trouble to get list of Categories of Custom post Type
- Display latest x posts from all categories in Custom Post Type/Taxonomy
- Categories filtering in new post
- WP the_posts() on single-cars.php get category link
- Print current post category during WP_Query
- How can I have different content for different countries?
- Is it possible to add posts and images (auto resize) for custom post types with a script?
- Invalid Taxonomy
- Get_the_terms restrict output
- How to include category name/id in wp_query for retrieving “custom post type” from a particular category?
- Include custom post type custom taxonomies in Categories widget
- custom query with custom post type and category slug
- WordPress custom post categories and subcategories on category.php
- Urls in Custom Post Type work for Terms but not for its Taxonomies
- Use post in multiple places on a page with multiple posts
- Can’t pull posts of a Custom Post Type based on the custom taxonomy of the CPT
- Archive Template being used instead of Category Template for Custom Post Type
- Add filter to Admin list for all custom post types by their custom taxonomies
- Custom post type specific category box
- Custom Taxonomy Taxonomies of Same Name point to first created URL
- Taxonomy terms with the same name are updated between separate custom post types
- category.php not showing custom post types
- How to automatically create a terms based on each post of a post type
- Add a class to a div if custom post type has specific terms?
- Post category behave like a Post in back office menu
- Save data is post using php front end
- Custom taxonomy terms hierarchical navigation
- Modify category permalink to use post type slug
- How to output custom post type title on custom page with category next to it?
- Create custom post type categories
- Automatic Set Category For A Custom Post Type
- How to create groups like that in buddypress?
- order taxonomy alphabetical
- Getting list of Categories for Custom Post Types
- WordPress get all post with like in terms [duplicate]
- can’t see categories in appearance-menu-categories
- Exclude categories For Custom post types
- How to retrieve the permalink for a specific (custom) term?
- Display all post types together
- Trying to create hierarchy between 3-4 custom post types
- How to Create a Frontend Html-list Editable in the Backend?
- set_post_thumbnail or media_sideload_image adds image multiple times in media library
- How to use wp_set_object_terms depending on page ID?
- Rewrite rule taxonomy url with different values in one function