Skip to content

Instantly share code, notes, and snippets.

@bulentsakarya
Last active July 1, 2017 18:22
Show Gist options
  • Save bulentsakarya/244cd730ba1b4757d7ca073cda068d60 to your computer and use it in GitHub Desktop.
Save bulentsakarya/244cd730ba1b4757d7ca073cda068d60 to your computer and use it in GitHub Desktop.
/**
* Custom Tabs
*
* @since 1.0.0
* @return void
*/
add_filter( 'woocommerce_product_tabs', 'woo_odeme_product_tab' );
function woo_odeme_product_tab( $tabs ) {
$tabs['odeme_bilgileri'] = array(
'title' => 'Ödeme Bilgileri',
'priority' => 50,
'callback' => 'woo_odeme_product_tab_content'
);
return $tabs;
}
function woo_odeme_product_tab_content() {
echo '<div class="entry-content">';
echo 'content...';
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment