Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // Add post-formats for theme
  2. add_theme_support( 'post-formats', array(
  3. 'quote',
  4. ) );
  5.  
  6. if( $format == 'quote' ) {
  7.  
  8. $content = apply_filters( 'the_content', get_the_content() );
  9. preg_match( '/<blockquote.*?>/', $content, $matches );
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement