Last active
July 1, 2017 18:22
-
-
Save bulentsakarya/244cd730ba1b4757d7ca073cda068d60 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
/** | |
* 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