仅显示一个短代码类型而不是帖子中的内容

时间:2014-03-09 10:14:11

标签: php wordpress

我想在帖子中显示一个特定的短代码并显示所有内容并且没有内容文本

我使用以下代码进行工作。

$pattern = get_shortcode_regex();
preg_match_all( '/'. $pattern .'/s', $post->post_content, $matches );

if( is_array($matches) && array_key_exists(1, $matches) && in_array('foodcat', $matches[2]) )
{
    $value = $matches[0];
    for($i=1;$i<=sizeof($matches[0]);$i++) {
        echo do_shortcode($value[$i]);
    }
} else {
  // Do Nothing
}

但它仅显示内容中使用的最后2 shortcodes,并且不依赖shortcode类型(在这种情况下为[foodcat]

0 个答案:

没有答案