if (document.URL == "http://www.domainName.com/") {
console.log(document.URL);
var restOfUrl = window.location.href.substr(11);
window.location = "http://" + restOfUrl;
}
Comments are welcome
When using WordPress as a CMS, or even as a blog you might want to display subcategories on category pages.
<?php if (is_category()) { $this_category = get_category($cat); } ?> <?php if($this_category->category_parent) $this_category = wp_list_categories('orderby=id&show_count=0 &title_li=&use_desc_for_title=1&child_of='.$this_category->category_parent. "&echo=0"); else $this_category = wp_list_categories('orderby=id&depth=1&show_count=0 &title_li=&use_desc_for_title=1&child_of='.$this_category->cat_ID. "&echo=0"); if ($this_category) { ?> <ul><?php echo $this_category; ?></ul><?php } ?>
Comments are welcome :)npm install --save-dev gulp.spritesmith
var gulp = require('gulp');
var spritesmith = require('gulp.spritesmith');
gulp.task('sprite', function () {
var spriteData = gulp.src('img/sprites/*.png')
.pipe(spritesmith({
/* this whole image path is used in css background*/
imgName: '../img/sprite.png',
cssName: 'sprite.css'
}));
spriteData.img.pipe(gulp.dest('img'));
spriteData.css.pipe(gulp.dest('css'));
});