arie_cristianD

add image post format option

Jul 24th, 2025
849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. add_action( 'after_setup_theme', 'add_new_post_format', 11 );
  2.  
  3. /**
  4.  * Add Image post format option
  5.  *
  6.  * @return void
  7.  */
  8. function add_new_post_format() {
  9.         add_theme_support( 'post-formats', array( 'gallery', 'video', 'image' ) );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment