我有简单的短代码问题。它的工作正常。当有80到90个字时。但如果有超过90个单词,那么它会显示"connection lost"
之类的消息。我在当地的主人工作。
相同的代码适用于wp 3.9版本。我在二十二个主题4.0版中测试了这段代码。但这里也没有用。
*我没有安装任何插件。
function extre_shortcode( $atts, $content = nulls) {
extract( shortcode_atts( array(
'hola' => '',
), $atts ) );
return '<div class="formacion"><h2>'.$hola.'</h2></div>';
[extra hola="big content"]
拜托,任何帮助。它适用于wp最新版本..
由于
}
答案 0 :(得分:0)
只需在functions.php中添加此过滤器
即可remove_filter(&#39; the_content&#39;,&#39; wptexturize&#39;);
有关详细信息,请按此thread