Wordpress简单的短代码内容长度

时间:2014-09-27 19:43:42

标签: wordpress shortcode

我有简单的短代码问题。它的工作正常。当有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最新版本..

由于

}

1 个答案:

答案 0 :(得分:0)

经过大量的挖掘,我发现了这个解决方案。我发布在这里,希望这会有所帮助。

只需在functions.php中添加此过滤器

即可

remove_filter(&#39; the_content&#39;,&#39; wptexturize&#39;);

有关详细信息,请按此thread