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 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 link pattern
https://www.diviframework.com/?add-to-cart= |
View functions.php
/** | |
* Disable the emoji's | |
*/ | |
function disable_emojis() { | |
remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); | |
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); | |
remove_action( 'wp_print_styles', 'print_emoji_styles' ); | |
remove_action( 'admin_print_styles', 'print_emoji_styles' ); | |
remove_filter( 'the_content_feed', 'wp_staticize_emoji' ); | |
remove_filter( 'comment_text_rss', 'wp_staticize_emoji' ); |
View functions.php
// Remove version numbers from resources in WP | |
function _remove_script_version($src) | |
{ | |
if (strpos($src, 'googleapis.com')) { | |
return $src; | |
} | |
$parts = explode('?', $src); | |
return $parts[0]; | |
} |
OlderNewer