add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', '6.1c', 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), '6.1c', 'all' );
}
function bt_linkbox( $atts, $content = null ) {
extract(shortcode_atts(
array(
"tur" => '',
"link" => '',
"img" => '',
'gelistirici' => '',
'fiyat' => '',
'boyut' => '',
), $atts));
$Yazdir[1] = '';
$Yazdir[2] = '';
$Yazdir[3] = '';
if($gelistirici != '') $Yazdir[1] = 'Gelistirici: '.$gelistirici.'';
if($fiyat != '') $Yazdir[2] = 'Fiyat: '.$fiyat.'';
if($boyut != '') $Yazdir[3] = 'Boyut: '.$boyut.'';
return '
';
}
add_shortcode( 'linkbox', 'bt_linkbox' );
Süpersiniz, bu kod işi çözdü. Bir sorum daha olacak. Değerlerde boşluk nasıl kullanacağız? Mesela gelistirici=DNZY Games yazdığımızda boşluktan sonrasını göstermiyor. gelistirici=DNZY-Games yazdığımızda görünüyor. - yerine ne yapmamız gerekiyor ki tam olarak gösterebilelim?
Örnek tam kod:
[linkbox tur=steam link=http://store.steampowered.com/app/429060/?snr=1_5_1100__1100 img=https://www.bozuktus.com/wp-content/uploads/2016/05/zombie-wars-invasion-android.png boyut=210MB fiyat=1,80TL(6,00TL) gelistirici=DNZY Games]Zombie Wars: Invasion[/linkbox]
Görünüm: http://prntscr.com/dkbcqg
Gördüğünüz gibi DNZY Games yazması gerekirken sadece DNZY yazıyor.
Sayenizde ne zamandır aklımda olan özelliği siteme entegre ediyorum. Çok teşekkürler.