Bootsrap.css Not Working

时间:2016-09-02 作者:user102092

我成功地导入了歌舞伎。css,但当我尝试加载bootsrap时。css它在页面上,但bootsrap类的工作方式与col-sm不同。

<?php 

function add_theme_scripts() { 
  wp_register_style( \'bootsrap-reg\',  get_template_directory_uri() .\'/css/bootstrap.css\', array(), null, \'all\' );
  wp_enqueue_style( \'bootsrap\', get_template_directory_uri() . \'/css/bootsrap.css\', array(), null, \'all\');
  wp_enqueue_style( \'kabuki\', get_template_directory_uri() . \'/css/kabuki.css\', array(), null, \'all\');
  wp_enqueue_style( \'wowanime\', get_template_directory_uri() . \'/css/animate.css\', array(), null, \'all\');
}
add_action( \'wp_enqueue_scripts\', \'add_theme_scripts\' );

1 个回复
SO网友:EBennett

您似乎在文件中加载了两次。此外,您还需要确保函数被绑定到挂钩中,以使其加载。

因此,WordPress codex的直接示例是:

// Register style sheet.
add_action( \'wp_enqueue_scripts\', \'register_plugin_styles\' );

/**
 * Register style sheet.
 */
function register_plugin_styles() {
    wp_register_style( \'my-plugin\', plugins_url( \'my-plugin/css/plugin.css\' ) );
    wp_enqueue_style( \'my-plugin\' );
}
此处摘自:https://codex.wordpress.org/Function_Reference/wp_register_style

正如您所看到的,声明了一个动作,然后我们用一个钩子将函数加载到该动作中。

该函数注册脚本,包括其文件路径,然后只需将样式排队,而无需再次声明文件路径。

其次,您可以检查控制台中是否有指向错误文件路径的错误,或者查看源代码并检查文件头中的链接,以查看它们是否指向正确的位置。

另一种可能的解决方案是,您没有在正确的位置声明此函数。所有功能必须放置在功能中。php和标头中使用的wp\\u head()函数。php文件。

相关推荐

如何创建4列和2列Twitter-Bootstrap相结合的WordPress循环?

我想根据4列(桌面视图)、2列(mobile view 768px)和1列(mobile view 425px)的组合显示帖子。我在下面找到了很棒的代码:<?php $paged = ( get_query_var(\'paged\') ) ? get_query_var(\'paged\') : 1; $args=array( \'post_type\' => \'post\',