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
/** | |
* Gets the markup for a featured grid. | |
* | |
* @param array $args Arguments for the grid. | |
* @return string Markup for the feature grid. | |
*/ | |
function wds_comeback_get_featured_grid( $args = array() ) { | |
// bail early if function doesn't exist. | |
if ( ! function_exists( 'wds_comeback_feature_grids' ) ) { | |
return ''; |
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
'use strict'; | |
//* Store paths | |
var PATHS = { | |
js: './js/', | |
sass: './sass/', | |
build: { | |
js: './js/min/', | |
css: './' | |
} |
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
{ | |
"user": { | |
"debug": false, | |
"delay": 0.25, | |
"error_color": "D02000", | |
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme", | |
"gutter_theme_excludes": [], | |
"lint_mode": "save only", | |
"linters": { | |
"php": { |
NewerOlder