gpt4 book ai didi

php - 尝试使用 php 变量排队 css 文件时发生 fatal error get_option()

转载 作者:行者123 更新时间:2023-11-28 09:20:29 28 4
gpt4 key购买 nike

我正在尝试从我的插件中加入一个包含 php 的 css 文件 (override.php)(下面的示例代码)

$fineprint_font_size=get_option('fineprint_font_size');
if($fineprint_font_size){
echo '<style type="text/css"> .fineprint {font-size:'.$fineprint_font_size.';}</style>';
}

打开我的 WP 站点时,出现以下错误: fatal error :调用未定义的函数:get_option()。我怎样才能像使用普通 wp_enueue_style 一样将此文件加载到 wp_head 中?

再次感谢。

最佳答案

尝试在该代码之上添加:

include_once(dirname(__FILE__) . '\wp-includes\functions.php');

这将加载所有必要的文件,以便 get_option() 工作。

关于php - 尝试使用 php 变量排队 css 文件时发生 fatal error get_option(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26111489/

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