Tagged: Custom Post Type, taxonomies, taxonomy
I have a custom post type and custom taxonomy called “case-study”. I am trying to use the “Blog Posts” content element from the Avia Layout Builder to display these post types on a page. I do not see where/how to select the taxonomy in this interface. I only see Category, Post Tag, Post Format… and none of those have my custom taxonomy/post type.
I can’t share the website because it’s on a secure dev server with IP restrictions.
Hey dmooredesign,
To display your CPT, try adding this to your child theme functions.php:
add_theme_support('add_avia_builder_post_type_option');
add_theme_support('avia_template_builder_custom_post_type_grid');
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
See this thread.
Best regards,
Mike
Perfect, thank you!