Hi there,
the Query Loop will only return posts at this time.
We will be adding other content types to GB Pro in the future.
If you want to get the taxonomy terms, you can use a PHP Snippet to create your own shortcode:
function custom_taxonomy_terms_shortcode( $atts ) {
$atts = shortcode_atts( array(
'taxonomy' => '',
), $atts );
$terms = get_terms( array(
'taxonomy' => $atts['taxonomy'],
'hide_empty' => false,
) );
$output = '<ul class="tax-grid">';
foreach ( $terms as $term ) {
$term_link = get_term_link( $term );
if ( is_wp_error( $term_link ) ) {
continue;
}
$output .= '<li class="tax-grid-item"><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>';
}
$output .= '</ul>';
return $output;
}
add_shortcode( 'custom_taxonomy_terms', 'custom_taxonomy_terms_shortcode' );
This doc explains adding PHP: https://docs.generatepress.com/article/adding-php/
Then you can add the list your page with this shortcode: [custom_taxonomy_terms taxonomy="your_taxonomy_name"]
It will require some CSS to make it into a grid.
Which I can provide if you can share a link to the page where the list is displayed