gpt4 book ai didi

php - 将样式表排到 wordpress 的首页

转载 作者:行者123 更新时间:2023-11-28 14:42:13 26 4
gpt4 key购买 nike

我正在尝试使用单独的样式表来设置 wordpress 网站首页的样式。我尝试了很多东西,但都没有用。这是我当前的代码。

    add_action('wp_enqueue_style', 'my_portfolio_styles' );

如果 (is_front_page()){ wp_enqueue_style('front-page', get_stylesheet_directory().'resources/front-page.css');

function my_portfolio_styles(){

wp_enqueue_style('resources', get_stylesheet_directory_url('front-
page.css'),array('front-page.css'));
}

最佳答案

wp_enqueue_style()是函数,不是 Action 。你必须使用 wp_enqueue_scripts action Hook 并在其中添加 wp_enqueue_style()

您还必须在 get_stylesheet_directory_uri() 之后添加一个正斜杠 / 。 ' 因为那个函数没有添加它。

wp_enqueue_style() 的第三个参数用于依赖项,第四个参数用于样式表版本号,第五个参数用于您希望显示样式表的媒体。

add_action( 'wp_enqueue_scripts', 'my_portfolio_styles' );
function my_portfolio_styles(){
if( is_front_page() ){
wp_enqueue_style( 'front-page', get_stylesheet_directory_uri() . '/resources/front-page.css', array(), false, 'screen' );
}
}

关于php - 将样式表排到 wordpress 的首页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52728204/

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