Skip to content

Instantly share code, notes, and snippets.

@mrwweb
Created March 7, 2015 01:13
Show Gist options
  • Save mrwweb/cff7ea2e8b9f04f5d64c to your computer and use it in GitHub Desktop.
Save mrwweb/cff7ea2e8b9f04f5d64c to your computer and use it in GitHub Desktop.
I'm not seeing any output from these
<?php
add_filter( 'facetwp_pre_filtered_post_ids', 'my_facetwp_pre_filtered_post_ids', 10, 2 );
function my_facetwp_pre_filtered_post_ids( $post_ids, $class ) {
var_dump($post_ids,$class,'hello world');
}
add_filter( 'facetwp_facet_html', 'my_facetwp_facet_html', 10, 2 );
function my_facetwp_facet_html( $output, $params ) {
var_dump($output,$params);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment