Skip to content

Instantly share code, notes, and snippets.

@MarcJandt
MarcJandt / facetwp_hide_posts_if_unfiltered.php
Last active February 8, 2022 10:29
FacetWP hide posts if unfiltered
<?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(
@MarcJandt
MarcJandt / query.sql
Last active August 29, 2019 16:26
SQL query to list all post's permalinks in WordPress
SELECT wpp.post_title,
wpp.guid,
wpp.post_date,
CONCAT
(
wpo_su.option_value,
REPLACE
(
REPLACE
(