I hereby claim:
- I am mcurren on github.
- I am mcurren (https://keybase.io/mcurren) on keybase.
- I have a public key ASBoHtvuR26mYzFzsuEcqSfC-8lDO3jx3lEv8lzHYmS3Pwo
To claim this, I am signing this object:
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// Set the desired number of columns in a variable for flexibility | |
$total-columns: 24; | |
// Create a placeholder for the grid container |
I hereby claim:
To claim this, I am signing this object:
/** | |
* Add 3DPrint weight and dimensions to WooCommerce cart item objects | |
* @author [email protected] | |
* | |
* @requires WooCommerce plugin - https://woocommerce.com/ | |
* @requires Wordpress 3D Printing plugin - http://www.wp3dprinting.com/ | |
*/ | |
function add_3dp_stats_to_wc_cart_objects( $cart_object ) { |
A meta query to be used with the Members plugin by Justin Tadlock. This meta query and will not have any effect without the plugin installed and active.
This Meta Query has two arguments and accepts either one. They are both based on post meta assigned using the Members plugin Content Permissions meta box on the post edit screen.
This meta query argument will exclude any posts from your custom WP_Query
with roles assigned in the Content Permissions meta box that do not match the current user's role.
<?php | |
/* | |
Debug preview with custom fields | |
Taken from: http://support.advancedcustomfields.com/forums/topic/preview-solution/ | |
See also: http://support.advancedcustomfields.com/forums/topic/2nd-every-other-post-preview-throws-notice/ | |
*/ | |
add_filter('_wp_post_revision_fields', 'add_field_debug_preview'); | |
function add_field_debug_preview($fields){ | |
$fields["debug_preview"] = "debug_preview"; | |
return $fields; |
/** | |
* Map-get function for nested variable maps | |
* (required) | |
*/ | |
@function map-deep-get($map, $keys...) { | |
@each $key in $keys { | |
$map: map-get($map, $key); | |
} | |
@return $map; |