gpt4 book ai didi

javascript - 为不同的 WordPress 页面添加自定义样式表

转载 作者:行者123 更新时间:2023-11-28 17:58:30 24 4
gpt4 key购买 nike

我创建了名为“front-page.php”的自定义主页,然后在 header.php 文件中添加了另一个带有自定义 css 和 JS 文件的页面:

<?php 
function my_styles_method() {

if (is_page_template('front-page.php'==TRUE){
// Register the style like this for a theme:
wp_register_style( 'my-custom-style', get_template_directory_uri().'/includes/marquee.css');

// enqueue the stule
wp_enqueue_style( 'my-custom-style' );

}


enter code here
// Register the style like this for a theme:
if (is_page_template('our-story.php'==TRUE) {
wp_register_style( 'my-custom-style', get_template_directory_uri().'/includes/main.css');

// enqueue the stule
wp_enqueue_style( 'my-custom-style' );
}
}
add_action( 'wp_enqueue_scripts', 'my_styles_method' );

?>

现在,我在这方面面临以下问题:当我在 WordPress 中运行它时,我收到此错误消息:

Parse error: syntax error, unexpected '{' inC:\wamp\www\wordpress_update\wp-content\themes\twentytwelve\header.phpon line 32

我已经在两个页面上创建了自定义模板。

提前谢谢你。

最佳答案

试试这个

<?php 
function my_styles_method() {

if (is_page_template('front-page.php')==TRUE){
// Register the style like this for a theme:
wp_register_style( 'my-custom-style', get_template_directory_uri().'/includes/marquee.css');

// enqueue the stule
wp_enqueue_style( 'my-custom-style' );

}


//enter code here
// Register the style like this for a theme:
if (is_page_template('our-story.php')==TRUE) {
wp_register_style( 'my-custom-style', get_template_directory_uri().'/includes/main.css');

// enqueue the stule
wp_enqueue_style( 'my-custom-style' );
}

add_action( 'wp_enqueue_scripts', 'my_styles_method' );

?>

//if (is_page_template('front-page.php'==TRUE) 应该是 if (is_page_template('our-story.php')==TRUE)

关于javascript - 为不同的 WordPress 页面添加自定义样式表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20898938/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com