Wil je een extra tabblad bij een WooCommerce product toevoegen? Dit kan met een WordPress plugin uiteraard. Maar met een paar regels code in je functions.php is het ook opgelost.
Tab toevoegen WooCommerce product
Om een tab toe te voegen kun je gebruik maken van de woocommerce_product_tabs filter hook voor WooCommerce.
add_filter( 'woocommerce_product_tabs', 'custompft_add_tabs' ); /** * * Custom product tab toevoegen. * */ function lmpr_add_tabs( $tabs ) { $tabs['lmpr_content'] = array( 'title' => __( 'NAAM TAB', 'text-domain' ), 'priority' => 50, 'callback' => 'lmpr_tab_content', ); return $tabs; } /** * Tab content. */ function lmpr_tab_content() { $lmpr_content = get_post_meta( get_the_ID(), '_lmpr_product_lmpr_content', true ); ?>