ler nerden geliyor nasıl kaldırabilirim? Css ile kaldırıyorum fakat oraya gelmesini istemiyorum. Şimdiden teşekkür ederim.
function tabs_shortcode( $atts, $content ) {
extract(shortcode_atts(array(
'icon' => '',
'metin' => '',
'baslik' => '',
), $atts));
return ''. do_shortcode( $content ) .'
';
}
add_shortcode( 'tabs', 'tabs_shortcode' );
function tab_shortcode( $atts, $content ) {
extract(shortcode_atts(array(
'icon' => '',
'metin' => '',
'baslik' => '',
), $atts));
return '
' . $icon . '' . $baslik .'
' . $metin . '
';
}
add_shortcode( 'tab', 'tab_shortcode' );
Çıktı:
-
iconBaşllık 1
Metin 1
-
iconBaşllık 2
Metin 2
-
iconBaşllık 3
Metin 3
kullandığım shortcode:
[tabs]
[tab icon="person" baslik="Başllık 1" metin="Metin 1"]
[tab icon="person" baslik="Başllık 2" metin="Metin 2"]
[tab icon="person" baslik="Başllık 3" metin="Metin 3"]
[/tabs]