Çalıştığınız dosyayı atarmısınız.
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));
return '
'.$content.'
Gelistirici: '.$gelistirici.'
Fiyat: '.$fiyat.'
Boyut: '.$boyut.'
İndir / Yükle ▼
Steam Store
';
}
add_shortcode( 'linkbox', 'bt_linkbox' );