gpt4 book ai didi

css - WordPress 样式表的自定义标题属性

转载 作者:行者123 更新时间:2023-11-28 08:54:27 26 4
gpt4 key购买 nike

如何在 functions.php 文件中的 wordpress 中为我自己的自定义样式表添加 title 属性?我找到类似的东西`

   global $wp_styles;
$wp_styles->add('example-alt', '/themes/example/example-alt.css');
$wp_styles->add_data('example-alt', 'title', 'Example Alternate Stylesheet');
$wp_styles->add_data('example-alt', 'alt', TRUE);
$wp_styles->enqueue(array('example-alt'));

`但我不知道如何在 functions.php 文件或其他任何地方使用它?

最佳答案

我不确定我是否理解你的问题。您想向您的博客添加 CSS 样式表或向标题添加属性吗?

如果你想在 functions.php 中添加一个 CSS 样式表,你必须像这样将它入队:

如果您的 CSS 样式表名为“my-style.css”,请将其与您的主题文件夹一起放在名为“css”的文件夹中,然后将其写入 functions.php:

function your_theme_name_scripts() {

// For Styles:
wp_enqueue_style( 'my-style', get_template_directory_uri(), '/css/my-style.css' );

// For Scripts:
wp_enqueue_script( 'my-script', get_template_directory_uri(), '/js/my-script.js' );

}
add_action( 'wp_enqueue_scripts', 'your_theme_name_scripts' );

您可以在此处找到有关排队样式的更多信息:http://codex.wordpress.org/Function_Reference/wp_enqueue_script

如果你想给标题添加任何属性,你有两个选择:在functions.php 上创建一个过滤器,或者直接修改header.php 上的wp_title() 函数。第二种选择是最好的。您可以在此处找到有关标题的更多信息:http://codex.wordpress.org/Function_Reference/wp_title

关于css - WordPress 样式表的自定义标题属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27199424/

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