php 在插件上使用wordpress get_option检索文本值并显示它

sauutmhj  于 2023-08-02  发布在  PHP
关注(0)|答案(1)|浏览(93)

$options变量保存了我的wordpress插件选项。我见过有人使用print_r,但我不确定如何在标记中回显它。

$options = get_option('simpledir_options', array() );

print_r($options);

字符串
该输出:

Array ( [custom_css_styles] => disable 
[custom_css_textarea] => a{color:hotpink;} )


我怎样才能得到一个{color:hotpink;}?

brqmpdu1

brqmpdu11#

您需要正确加载'wp-config.php'以加载'get_option'函数到页面中。例如:

require_once '../../../wp-config.php';

字符串

相关问题