This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* ThingLogix Pro | |
* Description: Used as page template to show filtered resources using "facetwp" | |
* | |
* Template Name: Page Resource | |
* | |
* @package ThingLogix | |
* @author j-cons |