This file contains 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
.facetwp-radio { | |
background-image: none; | |
background-color: gray; | |
padding: 5px; | |
display: inline-block; | |
margin: 5px; | |
} | |
.facetwp-radio.checked { | |
background-image: none; |
This file contains 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
add_action( 'pre_get_posts', 'sk_query_offset', 1 ); | |
function sk_query_offset( &$query ) { | |
// Before anything else, make sure this is the right query... | |
if ( ! ( $query->is_home() || is_main_query() ) ) { | |
return; | |
} | |
// First, define your desired offset... | |
$offset = -1; |