我已经定义了quote
主题的帖子格式:
// Add post-formats for theme
add_theme_support( \'post-formats\', array(
\'quote\',
) );
之后,我想显示内容中的引用。为此,我想使用
preg_match_all
要搜索的函数
<blockquote>Hello World.</blockquote>
if( $format == \'quote\' ) {
$content = apply_filters( \'the_content\', get_the_content() );
preg_match( \'/<blockquote.*?>/\', $content, $matches );
}
但它不起作用。我想找到blockquote标记并显示此标记内的内容。