Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Yorlinq/df6157be99dbab1b16753a5fa11b1206 to your computer and use it in GitHub Desktop.
Save Yorlinq/df6157be99dbab1b16753a5fa11b1206 to your computer and use it in GitHub Desktop.
Shortcode for 'Current product name' - WooCommerce
// Shortcode for 'Current product name': [yl_current_product_name]
function yl_current_product_name_shortcode() {
global $product;
$output = get_the_title();
return $output;
}
add_shortcode( 'yl_current_product_name', 'yl_current_product_name_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment