Guest User

Untitled

a guest
Apr 25th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2.  
  3. // Load theme options
  4. require_once ( get_stylesheet_directory() . '/theme-options.php' );
  5.  
  6. // Load Post Images
  7. require_once ( get_stylesheet_directory() . '/images.php');
  8.  
  9. // Automatic Feed Links
  10. if ( function_exists( 'add_theme_support' ) ) {
  11. add_theme_support('automatic-feed-links');
  12. }
  13.  
  14. // Add Editor Styles
  15. add_editor_style('editor-style.css');
  16.  
  17. // Add Content Width
  18. if ( ! isset( $content_width ) ) $content_width = 950;
  19.  
  20. // Allow Custom Background Image
  21. add_custom_background();
Add Comment
Please, Sign In to add comment