mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
11 lines
310 B
Text
11 lines
310 B
Text
add_action( 'woocommerce_single_product_summary', 'wc_display_badge_if_checkbox', 6 );
|
|
|
|
function wc_display_badge_if_checkbox() {
|
|
global $product;
|
|
if ( get_post_meta( $product->get_id(), 'custom_badge', true ) ) {
|
|
echo '
|
|
<div class="woocommerce-message">CUSTOM BADGE!</div>
|
|
|
|
';
|
|
}
|
|
}
|