web-dev-qa-db-ja.com

Wordpressの子テーマのCSSが読み込まれていない

私は https://codex.wordpress.org/Child_Themes のような子テーマを作成しました。

これが私のstyle.cssです。

/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

@media only screen and (max-width: 48em) { }
/*************** ADD MOBILE ONLY CSS HERE  ***************/

.absolute-footer.dark {
color: rgb(74, 74, 74) !important;
}
.absolute-footer.dark {
color: rgb(74, 74, 74);
}
h3
{
background-color: #c75050 !important;
}

しかし、子テーマのstyle.cssの変更は期待どおりに機能しません。私は私の子供のテーマのfunctions.phpで次のコードを使用しました

add_action( 'wp_enqueue_scripts', 'load_my_child_styles', 20 );
function load_my_child_styles() {
    wp_enqueue_style( 'child-style', get_stylesheet_directory_uri().'/style.css', array('twentyfourteen-style'), '1.0.0' );
}

しかしそれはまた働かない。 style.cssを機能させる方法を教えてください

1
Naresh

あなたのfunctions.phpコードに問題があると思います。これを使ってみてください https://wordpress.stackexchange.com/a/182023/110516

1
Sid