I hereby claim:
- I am neutraltone on github.
- I am neutraltone (https://keybase.io/neutraltone) on keybase.
- I have a public key whose fingerprint is 6C03 CA59 F73F 9C34 CDFF BF79 66D7 39E4 DE44 1C2C
To claim this, I am signing this object:
remove_action('wp_head', 'rsd_link'); | |
remove_action('wp_head', 'wp_generator'); | |
remove_action('wp_head', 'rel_canonical'); | |
remove_action('wp_head', 'feed_links'); | |
remove_action('wp_head', 'index_rel_link'); | |
remove_action('wp_head', 'wlwmanifest_link'); | |
remove_action('wp_head', 'feed_links_extra'); | |
remove_action('wp_head', 'start_post_rel_link'); | |
remove_action('wp_head', 'wp_shortlink_wp_head'); | |
remove_action('wp_head', 'parent_post_rel_link'); |
I hereby claim:
To claim this, I am signing this object:
{ | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://wpackagist.org" | |
}, | |
{ | |
"type": "package", | |
"package": { | |
"name": "advanced-custom-fields/advanced-custom-fields-pro", |
/** | |
* In page anchor header offset | |
* ---------------------------- | |
* Check a href for an anchor. If exists, and in document, scroll to it. | |
* If href argument ommited, assumes context (this) is HTML Element, | |
* which will be the case when invoked by jQuery after an event | |
*/ | |
function scroll_if_anchor(href) { | |
href = typeof(href) == "string" ? href : $(this).attr("href"); |
gulp.task('sassdev', function() { | |
gulp.src(src + '/styles/main.scss') | |
.pipe(sourcemaps.init()) | |
.pipe(plumber()) | |
.pipe(sass()) | |
.pipe(autoprefixer({ browsers: ['> 1%', 'iOS 7'] })) | |
.pipe(sourcemaps.write()) | |
.pipe(gulp.dest(dest + '/css')) | |
.pipe(size({ | |
showFiles: true |
"declaration-block-properties-order": [ | |
'composes', | |
'display', | |
'position', | |
'top', | |
'right', | |
'bottom', | |
'left', | |
'columns', | |
'column-gap', |
// placeholder styling | |
@mixin placeholder($color) { | |
::-webkit-input-placeholder { | |
color: $color; | |
} | |
::-moz-placeholder { | |
color: $color; | |
} | |
:-ms-input-placeholder { | |
color: $color; |
<div class="header header--sticky"> | |
<div class="header__container header__container--active"> | |
<nav>navigation</nav> | |
</div> | |
</div> |
/** | |
* Gulp Packages | |
* ============= | |
* Import our gulp packages. | |
*/ | |
import gulp from 'gulp'; | |
import svgmin from 'gulp-svgmin'; | |
import svgstore from 'gulp-svgstore'; | |
import cheerio from 'gulp-cheerio'; |