Created
January 6, 2026 05:46
-
-
Save jmabbas/19865d0f73618638af3dd9997b717b46 to your computer and use it in GitHub Desktop.
Electro - Product id in single product description meta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( 'woocommerce_product_meta_start', 'add_product_id_to_single_meta' ); | |
| function add_product_id_to_single_meta() { | |
| global $product; | |
| if ( ! $product ) { | |
| return; | |
| } | |
| echo '<span class="product-id">Product ID: ' . esc_html( $product->get_id() ) . '</span>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment