-
Üyelik
28.04.2014
-
Yaş/Cinsiyet
34 / E
-
Meslek
Seo & WebMaster
-
Konum
İstanbul Avrupa
-
Ad Soyad
E** Ü**
-
Mesajlar
178
-
Beğeniler
33 / 25
-
Ticaret
1, (%100)
functions.php içine bu kodları yazarak çağırabilirsiniz
//Load the theme CSS
function theme_css_js() {
wp_enqueue_script(
'theme_js',
get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), '', true );
wp_enqueue_script(
'youare_js',
get_template_directory_uri() . 'http://code.jquery.com/jquery-1.11.1.min.js', array('jquery'), true);
wp_enqueue_style(
'bootstrap',
get_template_directory_uri() . '/css/bootstrap.min.css' );
wp_enqueue_style(
'main',
get_template_directory_uri() . '/style.css' );
$y_alt_stylesheet = get_option('Y_alt_stylesheet');
if ( $y_alt_stylesheet && !($y_alt_stylesheet == 'Select a stylesheet:') ) {
wp_enqueue_style('altstylesheet', get_template_directory_uri() . '/' . $y_alt_stylesheet);
} else {
wp_enqueue_style('altstylesheet', get_template_directory_uri() . '/1_default_colors.css');
}
if ( is_singular() ) wp_enqueue_script( 'comment-reply' );
}
add_action( 'wp_enqueue_scripts', 'theme_css_js');