我一直在寻找为什么style.css
没有加载/申请/在线工作的时间,真的需要你的帮助!谢谢!
我的情况有点奇怪,它适用于我的header.php
,但不适用于页面和footer.php
我正在开发自定义帖子类型和提升自定义字段,并尝试嵌入一个部分,然后刷新页面,然后我的所有风格都消失了。
这是我尝试过的,到目前为止还没有工作......
enter image description here 6.我的标题链接到css
<link href="<?php bloginfo('stylesheet_directory');?>/style.css" rel="stylesheet" type="text/css">
我的functions.php
已经有wp_enqueue_script
,我可以添加任何内容吗?
function new_theme_scripts() {
wp_enqueue_style( 'new-theme-style', get_stylesheet_uri() );
wp_enqueue_script( 'new-theme-navigation', get_template_directory_uri() . '/js/navigation.js', [], '20151215', TRUE );
wp_enqueue_script( 'new-theme-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', [], '20151215', TRUE );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'new_theme_scripts' );
谢谢!