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
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> |
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
| ## EXPIRES CACHING ## | |
| <IfModule mod_expires.c> | |
| ExpiresActive On | |
| ExpiresByType image/jpg "access 1 year" | |
| ExpiresByType image/jpeg "access 1 year" | |
| ExpiresByType image/gif "access 1 year" | |
| ExpiresByType image/png "access 1 year" | |
| ExpiresByType text/css "access 1 month" | |
| ExpiresByType text/x-javascript "access 1 month" | |
| ExpiresByType application/pdf "access 1 month" |
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
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> |
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
| if (!-e $request_filename) { | |
| rewrite ^(.*)$ /index.php?q=$1 last; | |
| break; | |
| } | |
| gzip on; | |
| gzip_disable "msie6"; | |
| gzip_comp_level 6; | |
| gzip_min_length 1100; | |
| gzip_buffers 16 8k; |
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
| // Include Gulp. | |
| var gulp = require('gulp'); | |
| // Include config. | |
| var config = require('../tasks/config').vendor; | |
| // Include Plugins. | |
| var vendorFiles = require('bower-files')({ | |
| cwd: config.path | |
| }), |
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
| .content-sidebar-wrap{ | |
| @include row; | |
| .content { | |
| @include media($medium-screen-up) { | |
| @include span-columns(8); | |
| } | |
| } | |
| .sidebar { |
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_action( 'wp_enqueue_scripts', 'cs_conditional_scripts_and_styles' ); | |
| /** | |
| * Enqueue styles and scripts conditionally. | |
| * | |
| * @link https://msdn.microsoft.com/en-us/library/ms537512(v=vs.85).aspx | |
| * @since 1.0.0 | |
| */ | |
| function cs_conditional_scripts_and_styles() { | |
| /** |
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
| function return_escaped_acf_wysiwyg( $field, $post_id = false ) { | |
| // If there's no post id defined, get id from current post. | |
| if ( ! $post_id ) { | |
| $post_id = (int) get_the_ID(); | |
| } | |
| // Get the custom field. | |
| $content = get_post_meta( $post_id, $field, true ); | |
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 | |
| add_filter( 'facetwp_map_init_args', 'prefix_prevent_scroll_zoom_on_facet_map' ); | |
| /** | |
| * Filter the Google Map options to prevent scrollwheel zoom. | |
| * @link https://craigsimpson.scot/filter-facetwp-google-map-options | |
| * | |
| * @param array $args Array of init settings for Google map. | |
| * | |
| * @return array $args Modified array. |
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 | |
| /** | |
| * Template Name: Testimonials - ACF Functions | |
| */ | |
| add_action( 'genesis_entry_content', 'prefix_output_testimonials' ); | |
| /** | |
| * Output ACF testimonials. | |
| * | |
| * @link https://acfextras.com/simple-testimonials-repeater-field/ |