php 按钮短代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 按钮短代码相关的知识,希望对你有一定的参考价值。

/*
| ===================================================
| BUTTON SHORTCODE
| ===================================================
*/
function btn_shortcode( $atts, $content = null ) {
    $a = shortcode_atts( array(
        'href'  =>  '#'
    ), $atts );

    return '<a class="button" href="' . esc_attr($a['href']) . '">' . $content . '</a>';
}
add_shortcode( 'button', 'btn_shortcode' );

以上是关于php 按钮短代码的主要内容,如果未能解决你的问题,请参考以下文章

php CTA按钮短代码

php 微小的MCE为短代码添加按钮

php 具有自定义属性的按钮的短代码

在按钮单击时执行 php Shortcode

使用 fiddler 和PHP程序将快手App中喜欢的短视频保存在电脑上

使用 javascript 事件跟踪创建短代码以插入 CTA 按钮