我想在帖子中显示一个特定的短代码并显示所有内容并且没有内容文本
我使用以下代码进行工作。
$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]
)