Problem: I would like to display a list of posts organized by taxonomy term. I understand I would need to first create a View of taxonomy terms, then create a nested View of posts filtered by taxonomy term. However, I cannot find my taxonomy View in the list of Views available to display with a Views block, and when I place the View of posts it does not work as expected.
Solution: You must place a taxonomy View in the block editor using a View shortcode, since taxonomy Views are not supported in the Views block. The post View must then be placed inside the loop of the taxonomy View using another View shortcode.
Problem: I would like to use a conditional group in my post Form. The conditional should test whether or not a specific term from a custom taxonomy is selected, but I cannot figure out how to set up this conditional.
Solution: Manually edit the conditions for this conditional group and use the following syntax in the editor:
($(tax-slug) eq 'Term name')
Replace tax-slug with the slug of the custom taxonomy, and replace Term name with the name of the term to test.
How this works is that it displays the current loop index of the item being displayed. The only thing that you will need to do is to sort your view based on some sortable attribute to ensure that the first item that displays is actually episode 1.