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 | |
| // My new order statuses. | |
| function register_my_new_order_statuses() { | |
| register_post_status( 'wc-status-name', array( | |
| 'label' => _x( 'Status Name', 'Order status', 'textdomain' ), | |
| 'public' => true, | |
| 'exclude_from_search' => false, | |
| 'show_in_admin_all_list' => true, | |
| 'show_in_admin_status_list' => true, |
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
| // Generated on 2014-02-11 using generator-webapp 0.4.7 | |
| 'use strict'; | |
| // # Globbing | |
| // for performance reasons we're only matching one level down: | |
| // 'test/spec/{,*/}*.js' | |
| // use this if you want to recursively match all subfolders: | |
| // 'test/spec/**/*.js' | |
| module.exports = function (grunt) { |
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
| module.exports = function( grunt ) { | |
| 'use strict'; | |
| // | |
| // Grunt configuration: | |
| // | |
| // https://github.com/cowboy/grunt/blob/master/docs/getting_started.md | |
| // | |
| grunt.initConfig({ | |
| // Project configuration |
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
| /*! | |
| * CSS Reset 2011-12-25 | |
| * https://gist.github.com/gists/1360380 | |
| * | |
| * Author: Takeru Suzuki, http://terkel.jp/ | |
| * License: Public domain | |
| * | |
| * Inspired by Normalize.css: http://necolas.github.com/normalize.css/ | |
| */ |
NewerOlder