WordPress短代码AMP绑定不起作用

时间:2019-07-09 01:54:18

标签: php wordpress mobile

我对html文件进行了测试,并且可以正常工作。

<div hidden
[hidden]="hideGreeting">Hello World</div>
<button on="tap:AMP.setState({ hideGreeting: false })">Show greeting</button>
<button on='tap:AMP.setState({ text:"testing"})'>Testing Btn</button>
<input type="text" [value]="text1" />

enter image description here

但是我将此代码添加为wordpress简码,并删除了[em> [value] 属性。enter image description here

Wordpress简码功能在这里。 enter image description here

仅供参考,第一个按钮有效,但第二个输入标签无效。

此处是Wordpress的短代码。

function test_shortcode_func( $atts, $content = null ) {
$html .= '<div><div hidden [hidden]="hideGreeting">Hello World</div><button on="tap:AMP.setState({ hideGreeting: false })">Show greeting</button></div>';               
$html .= '<button on=\'tap:AMP.setState({ text1:"testing"})\'>Testing Btn</button><input type="text" value [value]="text1" />';
return $html;
}
add_shortcode('test_shortcode' , 'test_shortcode_func');

0 个答案:

没有答案