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 | |
// using FacetWP to filter posts but hide certain category if no facet is selected | |
add_filter( 'facetwp_filtered_post_ids', function( $post_ids ) { | |
$facets = FWP()->facet->facets; | |
// get post IDs to hide by category | |
$hide_post_ids = get_posts(array( | |
'numberposts' => -1, | |
'tax_query' => array( |
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
SELECT wpp.post_title, | |
wpp.guid, | |
wpp.post_date, | |
CONCAT | |
( | |
wpo_su.option_value, | |
REPLACE | |
( | |
REPLACE | |
( |