$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;}?
1条答案
按热度按时间brqmpdu11#
您需要正确加载'wp-config.php'以加载'get_option'函数到页面中。例如:
字符串