我的问题是,当有人按下按钮时,如何应用短代码
按钮:
git clone
短代码:
<button class="apply">Apply class</button>
用法:
function color_shortcode( $atts, $content = null ) {
return '<span class="color">' . $content . '</span>';
}
add_shortcode( 'color', 'color_shortcode' );
工作:
[color]This is colored[/color]
所以有人点击应用课程按钮,然后点击
<span class="color">This is colored</span>
已被定义,然后它将是这样的:
[color]This is colored[/color]
如果有些事情不可理解,请写信,我会做出更改!
如果只用php和/或css解决这个问题我会很高兴,但如果不是那就不是问题。
感谢您的帮助!