Advertisement
Mary_Pieroszkiewicz

functions.php

Oct 15th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. // Add post format support
  4. add_theme_support( 'post-formats', array( 'gallery' ) );
  5.  
  6. // add post-formats to post_type 'my_custom_post_type'
  7. add_post_type_support( 'przepisy', 'post-formats' );
  8.  
  9. // Custom Gallery Styles
  10. add_filter( 'use_default_gallery_style', '__return_false' );
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement