Skip to content

Instantly share code, notes, and snippets.

@wplit
Created September 16, 2020 00:35
Show Gist options
  • Select an option

  • Save wplit/4345af0181213f44953683833ec943ad to your computer and use it in GitHub Desktop.

Select an option

Save wplit/4345af0181213f44953683833ec943ad to your computer and use it in GitHub Desktop.
product list hook for categories
add_action('woocommerce_shop_loop_item_title', 'lit_shop_loop_item_before_title', 5 );
function lit_shop_loop_item_before_title() {
if ( !is_product_category() ) // abort unless we're on a product category
return;
echo 'add something here';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment