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
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, | |
| b, u, i, center, | |
| dl, dt, dd, ol, ul, li, | |
| fieldset, form, label, legend, | |
| table, caption, tbody, tfoot, thead, tr, th, td, |
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
| .outlined, .OUTLINED { | |
| color: transparent; | |
| -webkit-text-stroke: 1px #141414; | |
| -ms-text-stroke: 1px #141414; | |
| text-stroke: 1px #141414; | |
| } | |
| .onhover:hover { | |
| color: #FFD810; | |
| -webkit-text-stroke: unset; | |
| -ms-text-stroke: unset; |
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
| jQuery( document ).ready(function() { | |
| jQuery(".awf-filter-count").filter(function() { | |
| return jQuery(this).text().trim() === "0"; | |
| }).closest('label').hide(); // select the grandparent with closest | |
| }); |
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
| li > input.woof_radio_term[disabled] {display:none!important;} | |
| li > input.woof_radio_term[disabled] + label { | |
| display:none!important; | |
| } |
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
| sudo chmod -R 777 /opt/lampp/htdocs/. |
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
| xrandr --addmode VGA-1 1440x900 | |
| xrandr --output VGA-1 --mode 1440x900 --rate 60 |
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
| $categories = get_the_category(); | |
| foreach ( $categories as $category ) { | |
| echo '<span>' . esc_attr( $category->name ) . '</span>'; | |
| } | |
| wrap inside php |
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
| <?openphp get_header(); ?> | |
| <?openphp if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
| <article> | |
| <div id="single-post" class="single-post-content"> | |
| <div class="single-post-content-date"><?php the_date('F j Y'); ?></div> | |
| <div class="single-post-content-image"><?php the_post_thumbnail('full'); ?></div> | |
| <div class="single-post-content-cats"> | |
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
| $ = jQuery.noConflict(); | |
| $(document).ready(function(){ | |
| // Blog page - Filter first item auto click on load and add class active | |
| $(".filter-section ul li:eq(6)").addClass("active"); | |
| jQuery(function(){ | |
| $(".filter-section ul li:eq(6)").click(); | |
| }); |
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 (have_posts()):while(have_posts()): the_post(); the_content(); endwhile; endif; ?> |