Wordpress только начал изучать...
В режиме разработчика в гугл хром напротив файлов стилей указан статус 404.
header.php:<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> >
<header class="top_header">
<div class="wrapper">
test
</div>
</header>
<section class="home_slider">
</section>
Часть из front.php/**
* Enqueue Theme Styles
*/
function ale_enqueue_styles() {
// add general css file
wp_register_style( 'aletheme_general_css', THEME_URL . '/css/general.css', array(), ALETHEME_THEME_VERSION, 'all');
wp_register_style( 'jquery.jscrollpane', THEME_URL . '/css/jquery.jscrollpane.css', array(), ALETHEME_THEME_VERSION, 'all');
wp_register_style( 'jquery.fancybox-1.3.4', THEME_URL . '/css/jquery.fancybox-1.3.4.css', array(), ALETHEME_THEME_VERSION, 'all');
wp_register_style( 'aletheme_fontawesowe', THEME_URL . '/css/font-awesowe.min.css', array(), ALETHEME_THEME_VERSION, 'all');
wp_enqueue_style('aletheme_general_css');
wp_enqueue_style('aletheme_fontawesowe');
}
add_action( 'wp_enqueue_scripts', 'ale_enqueue_styles' );
Делаю все по урокам, ошибок, вроде, не допускал, но... В чем проблема?