I am trying to upgrade my SEO on my webshop. Anyone knows php could fix this puzzle. How can i fit this in each other?
How does this: is_product_category( 'shirts' )
fit in this:
function woa_content_before_shop() {
echo "<p>Insert your Content here...</p>";
}
add_action( 'woocommerce_before_shop_loop', 'woa_content_before_shop');
2
Answers
WordPress conditional tags like
is_product_category()
can be used to change the displayed content based on the matched condition.In this case you can use them to change the printed text based on
category
. You can exploit them in this way:Use this code. Also set your descriptions in Products > Categories.