提取内容中的短代码参数 - Wordpress

时间:2015-09-11 12:12:41

标签: php wordpress wordpress-plugin

考虑下面的帖子内容:

[shortcode a="a_param"]
... Some content and shortcodes here
[shortcode b="b_param"]
.. Again some content here
[shortcode c="c_param"]

我有一个包含3个或更多参数的短代码。 我想知道短代码在数组中的内容及其参数中使用了多少次,如

array (
[0] => array(a => a_param, b=> null, c=>null),
[1] => array(a => null, b=> b_param, c=>null),
[2] => array(a => null, b=> null, c=>c_param),
)

我需要在the_content过滤器,wp_head过滤器或类似的东西中执行此操作。

我该怎么做?

谢谢,

1 个答案:

答案 0 :(得分:4)

在wordpress get_shortcode_regex()函数中,返回用于在帖子中搜索短代码的正则表达式。

$pattern = get_shortcode_regex();

然后使用帖子内容preg_match模式

if (   preg_match_all( '/'. $pattern .'/s', $post->post_content, $matches ) )

如果返回true,则提取的短代码详细信息将保存在$ matches变量中。

<强>尝试

global $post;
$result = array();
//get shortcode regex pattern wordpress function
$pattern = get_shortcode_regex();


if (   preg_match_all( '/'. $pattern .'/s', $post->post_content, $matches ) )
{
    $keys = array();
    $result = array();
    foreach( $matches[0] as $key => $value) {
        // $matches[3] return the shortcode attribute as string
        // replace space with '&' for parse_str() function
        $get = str_replace(" ", "&" , $matches[3][$key] );
        parse_str($get, $output);

        //get all shortcode attribute keys
        $keys = array_unique( array_merge(  $keys, array_keys($output)) );
        $result[] = $output;

    }
    //var_dump($result);
    if( $keys && $result ) {
        // Loop the result array and add the missing shortcode attribute key
        foreach ($result as $key => $value) {
            // Loop the shortcode attribute key
            foreach ($keys as $attr_key) {
                $result[$key][$attr_key] = isset( $result[$key][$attr_key] ) ? $result[$key][$attr_key] : NULL;
            }
            //sort the array key
            ksort( $result[$key]);              
        }
    }

    //display the result
    print_r($result);


}