
// Show product categories above title in shop loop
add_action( 'woocommerce_before_shop_loop_item_title', 'show_product_categories_above_title', 5 );

function show_product_categories_above_title() {
    global $product;
    
    $terms = get_the_terms( get_the_ID(), 'product_cat' );
    
    if ( $terms && ! is_wp_error( $terms ) ) {
        echo '<div class="product-categories">';
        foreach ( $terms as $term ) {
            echo '<a href="' . esc_url( get_term_link( $term ) ) . '">' . esc_html( $term->name ) . '</a>';
        }
        echo '</div>';
    }
}<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://highprioritypeptides.sitehubpreview.com/wp-sitemap.xsl" ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://highprioritypeptides.sitehubpreview.com/hello-world/</loc><lastmod>2026-04-09T16:11:44+00:00</lastmod></url></urlset>
