将js文件和css文件添加到wordpress

问题描述 投票:1回答:4

我是wordpress的新手。我已经安装了名为'hare'的主题。现在我想在index.php页面中添加一些javascripts文件和css文件。但我没有找到理想的输出。

以下是我写的代码..

    <?php get_header(); ?>
    // Some content
    <?php get_footer(); ?>
<!-- JQuery libs
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<!-- js jQuery wait for images Plugin ====================== -->
<script src="<?php bloginfo(template_directory ); ?>/javascripts/jquery.waitforimages.js"></script>
<!-- js jQuery flexslider Plugin ====================== -->
<script src="<?php bloginfo(template_url); ?>/javascripts/jquery.flexslider-min.js"></script>
<!-- jQuery Cycle Plugin ====================================== -->
<script src="<?php bloginfo(template_url); ?>/javascripts/jquery.cycle.all.js"></script>
<!-- jQuery Cycle Plugin ====================================== -->
<script src="<?php bloginfo(template_url); ?>/javascripts/jquery.fullscreen-min.js"></script>
<!-- js jQuery jcarousellite Plugin ====================== -->
<script src="<?php bloginfo(template_url); ?>/javascripts/jcarousellite_1.0.1.min.js"></script>

<!-- js Fancybox Plugin ================================= -->
<link rel="stylesheet" href="<?php bloginfo(template_directory); ?>/javascripts/fancyBox-2/jquery.fancybox.css">
<script src="<?php bloginfo(template_url); ?>/javascripts/fancyBox-2/jquery.fancybox.pack.js"></script>
<!--fancybox helpers-->

<link rel="stylesheet" href="<?php bloginfo(template_directory); ?>/javascripts/fancyBox-2/helpers/jquery.fancybox-buttons.css"/>
<script src="<?php bloginfo(template_url); ?>/javascripts/fancyBox-2/helpers/jquery.fancybox-buttons.js"></script>
<!-- js jQuery qtip plugin ====================== -->
<script src="<?php bloginfo(template_url); ?>/javascripts/jquery.qtip-1.0.0-rc3.min.js"></script>
<!-- toTop ====================== -->
<script src="<?php bloginfo(template_url); ?>/javascripts/goToTop.js"></script>
<!-- js jQuery my own functions ====================== -->
<script src="<?php bloginfo(template_url); ?>/javascripts/functions.js"></script>


<!-- <script src="javascripts/jquery.tweet.js"></script> -->

<!-- JS twitter scripts ================================== -->
<script src="http://twitter.com/javascripts/blogger.js"></script>
<script src="http://twitter.com/statuses/user_timeline/EnvatoWebDesign.json?callback=twitterCallback2&amp;count=5"></script>

    <!-- End Document
    ================================================== -->
    </body>

    </html>

我的这种方式是正确的吗?如果没有那么请纠正我..

先感谢您

wordpress
4个回答
1
投票

在您的评论中,您可能指的是these guidelines from yahoo。然而,这条规则有一些警告。最重要的是,Google Analytics(分析)更喜欢将其摘要放在<head>部分中,并且不允许您使用Google Analytics(分析)进行网站管理员工具身份验证,除非该代码段处于最佳状态。

更重要的是,您不希望将JS和CSS文件直接包含在这样的主题模板中。它有效,但它非常非WordPress-y。

在WordPress主题中包含其他脚本和样式的“正确”方法是在functions.php的钩子中使用wp_enqueue_script()wp_enqueue_style() functions,如下所示:

function my_custom_styles_function() {
wp_enqueue_style( 'my-style', get_stylesheet_directory() . DS . 'javascript' . DS . 'my-plugin' . DS . 'my-plugin-style.css', array(), '1.0' );
    ...
}
add_action('wp_enqueue_scripts', 'my_custom_styles_function');

虽然没有建立$快捷方式,但WordPress默认包含jQuery。您可以使用WordPress的jQuery并使用jQuery(...);而不是$(...);启动所有自定义脚本,但这可能会导致某些插件出现问题。如果你想包含你自己的jquery版本,你应该首先使用wp_dequeue_style()dequeue“内置”jQuery。

最后,如果您确实希望在页脚中包含脚本,则wp_enqueue_script()函数会有一个标志$in_footer,用于将特定脚本推迟到页脚。


1
投票

@qccreative提供的答案是正确的。您应该使用主题中必须包含的functions.php文件包含页面所需的所有js / css文件。如果你没有它只是创建一个并创建一个函数导入您的文件就像上面的答案。

您甚至可以管理要加载脚本的页面。

这也是WP以有组织的方式包含脚本的最安全方式。

这个钩子,wordpress为WP_ENQUEQUE_SCRIPTS提供了一个函数,可以将你的动作中的脚本添加到站点。

继承人的另一个例子:

function load_javascript_files(){

      wp_register_script( 'jquery-accordion', get_template_directory_uri() . '/js/jquery.accordion.js', array('jquery'),true );
      wp_enqueue_script('jquery-accordion'); 
  }

 add_action('wp_enqueue_scripts', 'load_javascript_files');

祝好运好友


0
投票

从您放置的代码中,您将在themes文件夹中创建一个header.php文件,并在其中包含JS。一个例子如下:

    `<!DOCTYPE html>
    <html>
    <head>
    <title><?php bloginfo( 'name' ); ?></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

    <script src="<?php bloginfo( 'template_url' ); ?>/jquery-1.8.3.min.js" type="text/javascript"></script>

    <script src="<?php bloginfo( 'template_url' ); ?>/jQuery-validate.js" type="text/javascript"></script>

<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/style.css" type="text/css" />            
<?php wp_head(); ?>
</head>
<body>  

0
投票
/**
 * Proper way to enqueue scripts and styles.
 */

    function custom_links() {
        wp_enqueue_style( 'style-name', get_stylesheet_uri() );
        wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
    }
    add_action( 'wp_enqueue_scripts', 'custom_links' );

如果你需要链接你的CSS文件,你可以使用wp_enqueue_style,如果你需要链接JavaScript,你可以使用wp_enqueue_script。

wp_enqueue_scripts这是在wordpress的前端端工作。

admin_enqueue_scripts这适用于wordpress的后端端。

我希望这对所有人都有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.