dongxiong5546 2018-06-01 20:55
浏览 41
已采纳

PHP Wordpress插件变量不响应内联样式

I am developing a Wordpress Plugin and It has a shortcode that I am using to print out content to a page/post.

In my plugin file I have initiated all menu pages and settings, I have 2 settings in the plugin admin page and one of them is Brand Color so users can change the branding color of the form the shortcode is spitting out.

The data is saved in the wp-options table in wordpress and all working ok, the problem is when i try to echo out the variable content nothing is happening?

What I have done:

I first added a Global array variable at the top of my Plugin php file:

    $options = array();

    options_init(){

        if(current_user_can('manage_options')):

           global  $options;

            if(isset($_POST['form_submitted'])){

              $hidden = esc_html($_POST['form_submitted']);

                if($hidden == 'Y'){

                    $Brand = $_POST['brand_color'];
                    $options['brand_color'] = $Brand;

                    update_option('general_info', $options);
                }   

            }
                $options = get_option('general_info');

         endif
     }

So now I have stored the data I then retreive the data and store it in my options variable. In another function I create the shortcode function and content to show on the screen, when the shortcode is used.

I first call my global variable then the output for the shortcode content.

add_shortcode('my-form', 'budget_form');
function budget_form() {
global  $options;   
  ?>
<div class="monkey-budget-planner-wrapper">
        <div class="monkey-header-wrapper" style="background:<?php echo $options['brand_color'] ?>">
       </div>
</div>

    <?php
}

Th problem is that the style is not being output, there is no errors and in the inspector i see the output is blank. I am not sure what I am doing wrong?

  • 写回答

1条回答 默认 最新

  • douzhuo5671 2018-06-01 21:12
    关注

    Why not? You can combine some of your conditions also.

      options_init(){
    
            if(current_user_can('manage_options') && isset($_POST['form_submitted'])):
    
                  $hidden = esc_html($_POST['form_submitted']);
    
                    if( $hidden == 'Y'){
    
                        $brand = $_POST['brand_color'];
    
                        update_option('brand_color', $brand);
                    }   
    
    
             endif
         }
    

    Than you can use

        add_shortcode('my-form', 'budget_form');
    
            function budget_form() { 
    
              $color = get_option('brand_color'); ?>
    
              <div class="monkey-budget-planner-wrapper">
                     <div class="monkey-header-wrapper" style="background:<?php echo $color ?>"></div>
              </div>
    
        <?php } ?>
    

    if you need more than one option set, than just create more with update_option(), if you are going to set page specific values, I would suggest update_post_meta and get_post_meta(). The update_option() is normally for data at the theme level.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵