Skip to content

Instantly share code, notes, and snippets.

@iWebbers
Created August 11, 2018 01:48
Show Gist options
  • Save iWebbers/d88efbc43135d9b5d07dd66641babae4 to your computer and use it in GitHub Desktop.
Save iWebbers/d88efbc43135d9b5d07dd66641babae4 to your computer and use it in GitHub Desktop.
// Get WooCommerce product name by ID via shortcode: [iw_product_name id='']
function iw_product_name_shortcode( $atts ) {
$atts = shortcode_atts( array(
'id' => null,
), $atts, 'bartag' );
$html = '';
if( intval( $atts['id'] ) > 0 && function_exists( 'wc_get_product' ) ){
$_product = wc_get_product( $atts['id'] );
$html = $_product->get_title();
}
return $html;
}
add_shortcode( 'iw_product_name', 'iw_product_name_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment