This file contains hidden or 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
| // Add the SVG icons functions. | |
| include_once( get_stylesheet_directory() . '/lib/icon-functions.php' ); |
This file contains hidden or 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 | |
| /** | |
| * Update Genesis No Post Text | |
| * | |
| * @package Child Theme | |
| * @author Patrick Boehner | |
| * @copyright Copyright (c) 2017, Patrick Boehner | |
| * @license GPL-2.0+ | |
| * |
This file contains hidden or 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 | |
| /** | |
| * Script sample comes from WP SiteCare's carelib | |
| * https://github.com/wpsitecare/carelib | |
| * | |
| * A simplified version of Gary Jones Genesis JS | |
| * https://github.com/GaryJones/genesis-js-no-js/ | |
| * | |
| * This produces what the Genesis Sample Theme does in the |
This file contains hidden or 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 | |
| /** | |
| * Recent post excerpt widget | |
| * | |
| * @package CoreFunctionality | |
| * @author Patrick Boehner <[email protected]> | |
| * @since 1.0.1 | |
| * @copyright Copyright (c) 2016, Patrick Boehner | |
| * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License |
This file contains hidden or 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 | |
| /** | |
| * Login Page customizations | |
| * | |
| * This file adds the necessary functions and stylesheets to customize the login page. | |
| * | |
| * @package Theme Name | |
| * @author Patrick Boehner <[email protected]> | |
| * @link https:// |
This file contains hidden or 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 | |
| /** | |
| * Hide editor on specific pages. | |
| * | |
| */ | |
| add_action( 'admin_init', 'hide_editor' ); | |
| function hide_editor() { | |
| // Get the Post ID. |
This file contains hidden or 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
| var $slider = $('.homepage-slidehsow') | |
| .on('init', function(slick) { | |
| // Just checking if its running | |
| console.log('fired!'); | |
| // Fade in containing element for slick slider | |
| $('.homepage-slidehsow').fadeIn(900); | |
| }) |