如何才能添加新的库路径,而不在头上调用每个库路径?

时间:2017-03-21 作者:Sasha Chirico

如何添加/调用包含所有文件的整个路径,而不调用标头上的每个文件,如:

<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">

1 个回复
SO网友:TrubinE

function my_custom_enqueue_scripts() {
        if ($handle = opendir(get_template_directory() . \'/custom-stylesheets\')) {
            $i = 1;
            while (false !== ($file = readdir($handle))) {
                if ($file != "." && $file != "..") {
                    wp_register_style(\'custom_stylesheets_\' . $i, get_template_directory_uri() . \'/custom-stylesheets/\' . $file);
                    $i++;
                }
            }
            closedir($handle);
        }
    }

add_action(\'wp_enqueue_scripts\', \'my_custom_enqueue_scripts\');
向文件中添加代码:函数。php

样式应位于:you\\u主题/自定义样式表/

相关推荐

快捷代码返回转义的HTML标记

为了把事情放在上下文中,我正在使用WordPress上的龙门架,它与木材和树枝捆绑在一起。我有这个密码,基本的,make-your-text-bold 短代码// Add Shortcode function bold_text_shortcode( $atts , $content = null ) { return \'<strong>\' . $content . \'</strong>\'; } add_shortcode( \'b\