Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* ThingLogix Pro
* Description: Used as page template to show filtered resources using "facetwp"
*
* Template Name: Page Resource
*
* @package ThingLogix
* @author j-cons
@mmjaeger
mmjaeger / gcd_sass_script
Created June 24, 2016 19:57 — forked from chrisross/gcd_sass_script.scss
This Sass (SCSS) function utilises the Greated Common Divisor (gcd) to reduce duplicate styles.
// Algorithm to calculate the Lowest Common Denominator
@function gcd($a, $b){
@if $b == 0 {
@return $a;
} @else {
@return gcd($b, $a%$b);
}
}
// Example Use-case:
@mmjaeger
mmjaeger / functions.php
Created September 28, 2015 12:45 — forked from srikat/functions.php
Wrapping Primary and Secondary Navigation in custom divs in Genesis
//* Wrap .nav-primary in a custom div
add_filter( 'genesis_do_nav', 'genesis_child_nav', 10, 3 );
function genesis_child_nav($nav_output, $nav, $args) {
return '<div class="nav-primary-wrapper">' . $nav_output . '</div>';
}
//* Wrap .nav-secondary in a custom div
add_filter( 'genesis_do_subnav', 'genesis_child_subnav', 10, 3 );