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

时间:2019-06-22 04:36:23

标签: php wordpress plugins

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

final ConcurrentMap<String, AtomicLong> map = new ConcurrentHashMap<String, AtomicLong>();
    map.computeIfAbsent("foo", key -> new AtomicLong(0)).incrementAndGet();

这将输出:

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

print_r($options);

如何获取{{color:hotpink;}}的css值?

0 个答案:

没有答案