Last active
July 3, 2019 06:40
-
-
Save imran-khan1/7d01877633f5c0cc387c350525bc615b to your computer and use it in GitHub Desktop.
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
<?php | |
//Frontend Product detail page | |
function display_manufacturer() | |
{ | |
global $product; | |
$id = $product->id; | |
$manufacturer = get_post_meta( $id, 'meta_box_manufacturer', true ); | |
echo "<p><b>Manufacturer:</b> $manufacturer</p>"; | |
} | |
add_action('woocommerce_single_product_summary', 'display_manufacturer', 15 ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment