如何创建一个什么都不做的Wordpress Shortcode?

时间:2017-10-06 02:15:17

标签: wordpress shortcode

我正在尝试创建一个短代码用作包装器,以便使wpautop()函数无法生效。

是的,我知道如何完全删除自动格式化,但目标是创建一个自定义的短代码,我可以将其包裹在<在特定情况下,img标记并绕过自动格式。

我创建了这个短代码:

function no_wp_autoformat_shortcode() {
    return null;
}
add_shortcode('nowpautop', 'no_wp_autoformat_shortcode');

但是当应用时,图像就会消失。

如何创建一个具有空效果的Shortcode(对包装元素什么都不做)?

[nowpautop] img tag here [/ nowpautop]

这个问题是这个问题的延伸: Create shortcode in Wordpress that disables wpautop() on wrapped content?因为我相信这个问题更重要。

2 个答案:

答案 0 :(得分:1)

add_action( 'init', function() {
    add_filter( 'the_content', function( $content ) use ( &$matches ) {
        # save content between nowpautop tags, priority 9 means that this will run before wpautop
        preg_match_all( '#\[nowpautop\](.*?)\[/nowpautop\]#', $content, $matches, PREG_PATTERN_ORDER );
        # this filter returns $content unchanged and is run only to save the original content between nowpautop tags
        return $content;
    }, 9 );
    add_shortcode( 'nowpautop', function( $atts, $content ) use ( &$matches ) {
        # restore the original content between nowpautop tags
        static $index = 0;
        return $matches[1][$index++];
    });
});

答案 1 :(得分:0)

解决

Shortcodes REPLACE内容,因此解决方案使用属性将包装元素转换为源,使用Shortcode包装器设置开始和关闭

这是一个工作示例,如果有人有他们想要解决的类似案例。注意功能和短代码名称应更改为更合适的名称。

在functions.php(Child)中创建短代码

function no_wp_autoformat_shortcode( $atts, $content = null ) {

    return '<img style="max-width: 50px; width: 100%;" src="'. $content .'" alt="SGD Advantage"  />';
}

add_shortcode('nowpautop', 'no_wp_autoformat_shortcode');

在页面上使用:

<h3 style="display:inline;">Graphic Advantage</h3>
[nowpautop]https://sgdesign.com/images/SGDadvantage.png[/nowpautop]

最终结果:     &LT; h3 style =&#34; display:inline;&#34;&gt; Graphic Advantage&lt; / H3&GT;     &LT; img style =&#34; max-width:50px;宽度:100%;&#34; SRC =&#34; HTTPS://sgdesign.com/images/SGDadvantage.png" alt =&#34; SGD Advantage&#34; /&GT;

因为&lt; h3的样式为&#34; inline&#34;现在,图形在同一条线上实现了主要目标。