View zip_no_ds_store
zip -r archive.zip * -x "*.DS_Store" |
View Media Query for Divi Full Width
@media (max-width: 1200px) { | |
.et_boxed_layout #page-container, | |
.et_fixed_nav.et_boxed_layout #page-container #top-header, | |
.et_fixed_nav.et_boxed_layout #page-container #main-header{ | |
width:100%; | |
} | |
} |
View Create Tar
//tar files | |
tar -zcvf backup.tar.gz * |
View css snippet
#breadcrumbs span, | |
#breadcrumbs span a{ | |
color:#fff; | |
font-weight: bold; | |
} | |
#breadcrumbs span:first-child{ | |
background:#009DDC; | |
padding:3px | |
} |
View snippet
.nav li.red-bar ul { | |
border-top: 3px solid #ff0000; | |
} |
View register-custom-faq-view-file.php
<?php | |
add_filter('my_custom_faq_view', 'my_custom_faq_view_filter', 10, 1); | |
function my_custom_faq_view_filter($slugs = array()) | |
{ | |
// set the location of the faq file to a sub directory in the child theme folder. | |
$slugs['my_custom_faq_slug'] = get_stylesheet_directory() . '/resources/views/my-custom-faq-file.php'; | |
return $slugs; |
View sample-faq-view-file.php
<?php | |
$args = array( | |
'post_type' => 'faq', | |
'posts_per_page' => -1, | |
'tax_query' => array( | |
array( | |
'taxonomy' => 'faq_category', | |
'field' => 'id', |
View style.css
span.mobile_menu_bar:before{ | |
color:#ffffff; | |
} |
OlderNewer