dongpaozhi5734 2019-06-23 17:37
浏览 76
已采纳

根据WP编码标准清理和清理php代码

I have few lines of code which i need to clean up as per WP coding standard using the functions like esc_html, wp_kses() etc (https://developer.wordpress.org/reference/functions/wp_kses/). That code generates a printing button on the post detail page. The problem is i can't figure out the correct way to use wp_kses function so as to show the button on the page. Could anyone help me here? I am a beginner for php. Thanks in advance!

Code on the file

<!-- printer friednly link  -->
    <?php if(function_exists('pf_show_link')){echo pf_show_link();} ?>

Code i am trying to add which is not outputting any button

<!-- printer friednly link  -->
    <?php
    if ( function_exists( 'pf_show_link' ) ) {
        $allowed_tags = array(
            'strong' => array(),
            'a'      => array(
                'href'  => array(),
                'title' => array(),
            ),
        );
        echo wp_kses( $allowed_tags );
    }
    ?>

the button which renders from the code

  • 写回答

1条回答 默认 最新

  • doze79040 2019-06-24 10:55
    关注

    I am not sure you should use wp_kses here at all. If you are the one who generates that html output with function, you don't need to sanitize. Anyway, if you really want to, you must list all html tags you use (so also, div, img...) and all attributes inside those tags (style, src, onclick...). Try like this:

    $allowed_tags = array(
        'div'    => array(),
        'img'    => array(
            'style' => array(),
            'src' => array(),
            'alt' => array()
        ),
        'strong' => array(),
        'a'      => array(
            'href'  => array(),
            'title' => array(),
            'rel' => array(),
            'onclick' => array(),
            'class' => array(),
            'data-wpel-link' => array()
        ),
    );
    
    echo wp_kses(pf_show_link(), $allowed_tags);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line