context['generateblocks/queryType'] ?? null; if ( GenerateBlocks_Block_Query::TYPE_WP_QUERY === $query_type ) { $post_classes = get_post_class(); if ( class_exists( 'WP_HTML_Tag_Processor' ) ) { $tags = new WP_HTML_Tag_Processor( $block_content ); if ( $tags->next_tag( $attributes['tagName'] ) ) { $existing_classes = $tags->get_attribute( 'class' ); $new_classes = $existing_classes . ' ' . implode( ' ', $post_classes ); $tags->set_attribute( 'class', $new_classes ); $block_content = $tags->get_updated_html(); } } } // Add styles to this block if needed. $block_content = generateblocks_maybe_add_block_css( $block_content, [ 'class_name' => __CLASS__, 'attributes' => $attributes, 'block_ids' => self::$block_ids, ] ); return $block_content; } }