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
| @charset "UTF-8"; | |
| @font-face { | |
| font-family: "SSJunior"; | |
| src: url('ss-junior.eot'); | |
| src: url('ss-junior.eot?#iefix') format('embedded-opentype'), | |
| url('ss-junior.woff') format('woff'), | |
| url('ss-junior.ttf') format('truetype'), | |
| url('ss-junior.svg#SSJunior') format('svg'); | |
| font-weight: 400; | |
| font-style: normal; |
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 if(get_field('repeater_field_name')): ?> | |
| <?php while(has_sub_field('repeater_field_name')): ?> | |
| <?php the_sub_field('sub_field'); ?> | |
| <?php endwhile; ?> | |
| <?php endif; ?> |
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 if(get_field('repeater_field_name')): ?> | |
| <div class="flexslider"> | |
| <ul class="slides"> | |
| <?php while(has_sub_field('repeater_field_name')): ?> | |
| <li> | |
| <img src="<?php the_sub_field('sub_field'); ?>" /> | |
| </li> | |
| <?php endwhile; ?> | |
| </ul> | |
| </div> |
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 $post_objects = get_field('post_objects'); ?> | |
| <?php if( $post_objects ): ?> | |
| <?php foreach( $post_objects as $post): ?> | |
| <?php setup_postdata($post); ?> | |
| <?php the_title(); ?> | |
| <?php endforeach; ?> | |
| <?php wp_reset_postdata(); ?> | |
| <?php endif; ?> |
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
| <button type="button" class="btn btn-danger" data-toggle="collapse" data-target="#demo"> | |
| </button> | |
| <div id="demo" class="collapse in"></div> |
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
| <button type="button" class="btn btn-danger" data-toggle="collapse" data-target="#demo" | |
| </button> | |
| <div id="demo" class="collapse in"></div> |
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
| nth-child(odd) |
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
| border-top: 4px solid; | |
| border-right: 4px solid transparent; | |
| border-left: 4px solid transparent; |
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
| $args = array(); | |
| $the_query = new WP_Query( $args ); | |
| if ( $the_query->have_posts() ) { | |
| while ( $the_query->have_posts() ) { | |
| $the_query->the_post(); |
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
| .htaccess | |
| wp-config.php | |
| logs/ | |
| wp-content/upgrade/ | |
| wp-content/uploads/ | |
| wp-content/debug.log | |
| # W3 Total Cache | |
| wp-content/cache/* | |
| !wp-content/cache/index.html |