This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              Show hidden characters
| { | |
| "auto_complete": true, | |
| "color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", | |
| "font_size": 16, | |
| "ignored_packages": | |
| [ | |
| "CSS3", | |
| "Vintage" | |
| ], | |
| "installed_packages": | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // For LESS | |
| body:before{ | |
| background: #f0a; | |
| color: #fff; | |
| content: "@screen-phone (col-xs-xx)"; | |
| padding: 10px; | |
| position: fixed; | |
| bottom: 10px; | |
| left: 10px; | |
| z-index: @zindex-modal + 10; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| // disable all feeds | |
| function fb_disable_feed() { | |
| wp_die(__('<h1>Feed not available, please visit our <a href="'.get_bloginfo('url').'">Home Page</a>!</h1>')); | |
| } | |
| add_action('do_feed', 'fb_disable_feed', 1); | |
| add_action('do_feed_rdf', 'fb_disable_feed', 1); | |
| add_action('do_feed_rss', 'fb_disable_feed', 1); | |
| add_action('do_feed_rss2', 'fb_disable_feed', 1); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| add_filter( 'jpeg_quality', 'custom_jpeg_quality' ); | |
| function custom_jpeg_quality() { | |
| return 100; // Whatever quality you like, 0-100, 100 is better | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| // Documentation | |
| // http://wp.smashingmagazine.com/2011/10/14/advanced-layout-templates-in-wordpress-content-editor/ | |
| add_filter( 'default_content', 'custom_editor_content' ); | |
| function custom_editor_content( $content ) { | |
| global $current_screen; | |
| if ( $current_screen->post_type == 'name_of_post_type') { // eg. "page" or "post" | |
| $content = ' | |
| <h3>Edit the editor template:</h3> |