从自定义wordpress编辑器输出内容?

时间:2013-02-13 19:00:26

标签: php wordpress

我正在为我的wordpress主题使用选项框架(NHP主题选项),我没有添加像'if'语句这样的东西的问题,ex如果选择'echo'这个信息。

仅此一项就可以实现许多动态选项。我在管理员面板中添加了一个wordpress编辑器框,我对如何输出框内的信息感到有点迷失。

它位于数组内的主题选项页面中,

    array(
                    'id' => 'header-area',
                    'type' => 'editor',
                    'title' => __('Editor Option', 'my-opts'), 
                    'sub_desc' => __('Can also use the validation methods if required', 'my-opts'),
                    'desc' => __('This is the description field, again good for additional info.', 'my-opts'),
                    'std' => 'headarea'
),

通常我使用if语句,这是我输出选项的示例。

    <?php if( my_opts_get('header-area') ) { 

      $fixed_header_css = 'top: 0;';

  } else {

      $fixed_header_css = 'top: 51px;';

} ?>

这只是一个例子,但我是一个PHP新手,不知道如何输出编辑器数组。

我知道它不是通过使用if语句,我尝试了像

这样的东西
    <?php echo my_opts_get('header-area') ?>

我认为这可能很接近,但我显然缺少一些东西

1 个答案:

答案 0 :(得分:0)

答案就在我的鼻子底下,使用这一简单的代码行就是我输出数据所需的全部内容。

    <?php echo moon_opts_get('header-present-area', 'home-area'); ?>