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 | |
function my_scripts_method() { | |
wp_enqueue_style( | |
'foundation', | |
get_stylesheet_directory_uri() . '/ct/stylesheets/app.css', | |
array(), | |
false, | |
'all' |
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 | |
$args = array('post_type' => array('page'), 'order' => 'ASC', 'orderby' => 'date'/* | |
to sort by custom fields | |
, 'meta_query' => array( | |
array( | |
'key' => 'meta', | |
'value' => 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
.m-0 {margin: 0;} | |
.mb-1 {margin-bottom: 1em !important;} | |
.mb-2 {margin-bottom: 2em !important;} | |
.mb-3 {margin-bottom: 3em !important;} | |
.mb-4 {margin-bottom: 4em !important;} | |
.mb-5 {margin-bottom: 5em !important;} | |
.mt-1 {margin-top: 1em;} | |
.mt-2 {margin-top: 2em;} | |
.mt-3 {margin-top: 3em;} |
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
.ir { | |
font: 0/0 "image replace"; | |
position: relative; | |
display: inline-block; | |
background-repeat: none; | |
} |