Use dedicated functions

时间:2021-08-17 作者:Antonio

在下面的页面模板中,应加载额外的JS脚本(“carousel.JS”)和额外的CSS文件(“carousel.CSS”)。如何使用WordPress专用功能运行这些文件?

<?php
/**
* Template Name: Full Width Page
*
* @package WordPress
*/
get_header();
while ( have_posts() ) :
 the_post();
 the_content();
 if ( comments_open() || get_comments_number() ) {
 comments_template();
 }
endwhile;
get_footer();

1 个回复
最合适的回答,由SO网友:rudtek 整理而成

您将希望在函数中将脚本排队。php(如果这是在插件中,您可以做一些不同的事情)。以下是一个示例:

 function owl_scripts()
{
    wp_enqueue_script( \'owl-carousel\', get_stylesheet_directory_uri() . \'js/carousel.js\', array( \'jquery\' ), \'\', true );
    wp_enqueue_style( \'owl-style-min\', get_stylesheet_directory_uri() . \'css/carousel.css\' );
}

add_action( \'wp_enqueue_scripts\', \'owl_scripts\' );
这是假设:

您正在使用子主题

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post