This file contains 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
function add_timestamp_to_childtheme_stylesheet() { | |
wp_dequeue_style( 'style' ); | |
wp_deregister_style( 'style' ); | |
wp_enqueue_style('style', get_stylesheet_uri().'?'.filemtime(get_stylesheet_directory().'/style.css'), array(), null); | |
} | |
add_action( 'wp_print_styles', 'add_timestamp_to_childtheme_stylesheet' ); |
This file contains 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
elasticsearch - http://www.elasticsearch.org/ | |
riako - http://docs.basho.com/ | |
redis - http://redis.io/ | |
graylog2 - http://graylog2.org/ | |
rabbitMQ - http://www.rabbitmq.com/ | |
http://requestb.in/ | |
angularjs http://www.angularjs.org |
This file contains 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
This method for last version of Bootstrap - Version 2.3.1 | |
Click this link to customize bootstrap: http://twitter.github.com/bootstrap/customize.html | |
You will find such as this list and change the number as you like. | |
16 Grid system with Gutter | |
@gridColumns: 16 | |
@gridColumnWidth: 45px | |
@gridGutterWidth: 15px |
This file contains 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 | |
// No, Thanks. Direct file access forbidden. | |
! defined( 'ABSPATH' ) AND exit; | |
// INIT | |
add_action( 'after_setup_theme', array( 'unavailable_post_status', 'init' ) ); | |
class unavailable_post_status extends wp_custom_post_status | |
{ | |
/** |