Advertisement
kobial8

Enabling Post Format For Different Post Type

Mar 1st, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. if ( ! function_exists( 'my_post_format' ) ) :
  2. function my_post_format() {
  3.     add_theme_support( 'post-formats', array(
  4.         'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat'
  5.     ) );
  6. }
  7. endif;
  8. add_action( 'after_setup_theme', 'my_post_format' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement