Skip to content

Instantly share code, notes, and snippets.

View joshcoast's full-sized avatar
:octocat:
yep

Josh Coast joshcoast

:octocat:
yep
View GitHub Profile
@tmlangley
tmlangley / _nav-boilerplate.scss
Created September 21, 2016 19:58
Dropdown navigation boilerplate
nav {
// wrapper styles...
// All tier menus (ul selector)
.menu {}
// All list items
li {}
// All links
@mboynes
mboynes / trait-alley-cli-bulk-task.php
Last active November 16, 2022 18:09
WP-CLI methods to iterate over any number of posts efficiently and reliably
<?php
// DEPRECATED. See https://github.com/alleyinteractive/wp-bulk-task as the successor to this trait.
/**
* Chunk up the task when you need to iterate over many posts.
*
* For instance, to iterate over every post on the site and add post meta:
*
* $this->bulk_task( function( $post ) {