wordpress文章形式函数功能 添加在 functions.php 添加后在 写文章右侧就会有文章形式可选了

add_theme_support( 'post-formats',      
      array( 
        'aside',   // title less blurb
        'gallery', // gallery of images
        'link',    // quick link to other site
        'image',   // an image
        'quote',   // a quick quote
        'status',  // a Facebook like status update
        'video',   // video 
        'audio',   // audio
        'chat'     // chat transcript 
      )
    );