To list the options for a custom taxonomy you need to query the taxonomy terms. To do that you use get_terms() http://codex.wordpress.org/Function_Reference/get_terms
// We are assuming color is the name of the taxonomy
$colors = get_terms( 'color', array(
'orderby' => 'name',
'hide_empty' => 0
));
// Now loop through the colors and spit out the checkbox
// with the name of the color as well as the value of the term_id
foreach($colors as $color){
....
On the server side for handling the submission (once you get the form correct) you can use wp_set_post_terms() http://codex.wordpress.org/Function_Reference/wp_set_post_terms
Related Posts:
- How to integrate a form (Ninja Form or Contact Form 7) with Custom Post Types?
- Advanced search form with filters for custom taxonomies and custom fields
- Enable sticky posts to custom post_type
- Create page to handle form submission
- What should I use – Taxonomies, custom fields, Post Type?
- How can I add a column/s to wp_posts table?
- WP_List_Table Inside Metabox Not Working on Submit
- Creating Photo Gallery System with Custom Post Type
- Showing current taxonomy terms
- automatically create taxonomy with same name as post title
- Conditional two level dropdown filter for custom post type
- Custom Taxonomy order by Custom Field
- How to embed form data within the ‘Add new post’
- Is there any performance consideration when using Custom Post Types?
- Custom post type / custom fields
- Linking three taxonomies with ACF
- get_queried_object error How to show post count by month in the taxonomy page
- Custom Posts Hierarchy? (State/City/Restaurant)
- Automatically populate a hierarchical taxonomy from a custom field
- How to add the post ID (or any other post data) to a Contact Form 7 mail?
- Custom Taxonomy – Tags Metabox is showing instead of Categories
- WordPress posts with multiple fields
- wp_query to find posts by year and month
- Adding dropdown select meta box to custom post type – seems restAPI is interfering
- Missing Posts in Custom Taxonomy List
- Which post does a taxonomy term belongs to?
- How do I associate a custom post type with another through a taxonomy or storing an ID in a custom field?
- Update Post Meta for a logged in user
- Add custom field to Posts and sort by it
- Get related posts of child term of custom post type
- Two Custom Post Types Many to Many Relationship
- Show custom post type relationships by taxonomy
- auto populate list of questions if user select a category xyz
- Hierarchy and access control for Custom Post Types (CPT)
- First custom field value (out of several) displayed twice after query
- Homepage’s content is dependent on the custom field values (set automatically), how do I get homepage to update without manually updating page?
- How to make front end form only accept certain values
- How to display products name in a non-alphabetical order, in a custom field (taxonomy)?
- Show fields based on taxonomy selection in editor
- Permalinks: custom structure for taxonomy – tags?
- Creating custom post type with custom taxonomy and custom fields programatically
- Variable not working in WP_Query
- Custom Taxonomy Search result page
- How to get_term_meta on single custom post?
- Category Search / Custom Post Type search on my website. Custom Post Types that are “page-like”?
- Display a post from custom post type only if all the selected taxonomies and custom field value matches the record
- Modify Posts from Custom_Post_Type within the plugin
- How to fetch custom post types with its full data on wordpress?
- How to populate a Gravity Forms Custom Post Field (dropdown type) with custom taxonomy terms? [closed]
- Get custom term meta problem on single post type
- Custom post type name and assigning custom taxonomy
- Copy/Move selected taxonomy terms to another taxonomy for posts
- Different structure/content for posts from a custom post type
- List all posts in taxonomy term
- Building a Portfolio and need some direction
- custom taxonomy listing returns no posts
- Order custom posts by taxonomy, then by meta_key
- Confusion about how to use Custom Post Types, Custom Taxonomy or Category?
- Displaying Posts Using a Custom Query with a Custom Field and a term_id
- Front-end Image Upload to Custom Meta Box
- Writing a custom Glossary plugin
- add_filter get array data before display in custom post_type
- ACF – Retrieve custom taxonomy from a relationship field
- Search CPT by tag ids
- Post template with breadcrumb needs to show page navigated from
- Display Posts that fit a certain criteria on Category pages
- Right way to store a large set of similar information on website? [duplicate]
- Define multiple prefixes for custom post type
- wp_insert_post deleting previous post custom meta
- Show posts from WP Custom Post Type selected from a field in a metabox
- WordPress retrieving $post based on random key in $_POST
- Change the term based on the value of a $variable using wp_update_post in submitting a form
- I want to create a metabox under custom taxonomy
- Show ajax form resuslts in page
- Advanced search form with multiple custom fields
- Query posts by multiple custom fields
- Display title of all custom posts from same taxonomy term on a custom post template
- How to get all posts related to a taxonomy?
- Create Inclusions and exclusions
- Best way to use Category & Custom Fields?
- Custom Post Status & Taxonomies
- predefined custom field on registration page
- Show Custom Post Type taxonomy term that matches custom field
- Front-end form submission not creating post
- Linking custom taxonomies and posts
- custom taxonomies are not showing up in get_taxonomies
- Query Only Show Text on Posts With Certain Taxonomy Tag
- Storing/querying custom date data
- Order by custom field attribute
- Custom post type and custom taxonomy archive inaccessible
- Get custom post type parent category
- Display code if title of the custom post matches title of other post
- I want to understand plugin implementation of custom posts / taxonomies / metaboxes
- Sort ACF by custom taxonomy
- How to develop Knowledge center in WordPress Website
- Creating subpages for each custom post type
- ACF – Tags not showing up in Custom Post Types
- Hide load more button if no more post in selected category
- Need some suggestions with Relationship fields and CPT/ACF
- How to automatically update ACF field value every year?