Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Last active August 7, 2020 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DxDiagDx/c0935e6963cb3feac978d909da5ae8e0 to your computer and use it in GitHub Desktop.
Save DxDiagDx/c0935e6963cb3feac978d909da5ae8e0 to your computer and use it in GitHub Desktop.
WOO: условие вывода для всех категорий
add_action( 'woocommerce_before_main_content', 'bbloomer_loop_cat' );
function bbloomer_loop_cat() {
if ( is_product_category() ) {
echo 'Это сообщение видно только на страницах категорий';
} else {
echo 'Это сообщение видно на всех остальных страницах WooCommerce';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment