这种格式叫什么(嵌套短码)?

时间:2014-03-03 作者:Nabil Kadimi

在WordPress中使用插件和商业主题时,经常会遇到这样的代码:

[one_half]
    [service_box]
        <h1>Title:</h1>
        <ul>
            <li>blah...</li>
            <li>blah...</li>
            <li>blah...</li>
        </ul>
    [/service_box]
[/one_half]
[one_half_last]
     Something more irrelevant here
[/one_half_last]
这东西在WordPress的行话里有名字吗?

1 个回复
最合适的回答,由SO网友:birgire 整理而成

我会用这个短语

嵌套短代码

来描述它。

你可以找到many questions 在WPSE中使用该短语。

法典也使用它,例如:

http://codex.wordpress.org/Shortcode_API#Nested_Shortcodes

由于您的示例中的短代码与布局相关,我们可以将其称为:

嵌套布局短代码

更具体地说。

如果您有其他想法或更好的建议,请与我们分享。

结束

相关推荐

Has_ShortCode()-如何检测嵌套的短码

我正在使用has_shortcode() 要检测短代码,它可以工作,但根本不能。如果我将这个指定的短代码放在另一个短代码中has_shortcode() 功能停止工作。has_shortcode( $post->post_content, \'slider\' ) 例如:[2col] //left column [slider] [2col_next] //right column [slider] [/2col] Thehas_shortcode