Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created March 11, 2020 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djrmom/ea98f85eb1309123337fd571ee77f283 to your computer and use it in GitHub Desktop.
Save djrmom/ea98f85eb1309123337fd571ee77f283 to your computer and use it in GitHub Desktop.
facetwp custom data in json
<?php
/** return custom data in the json facet returns on refresh
** access with FWP.settings.my_data in JS
*/
add_filter( 'facetwp_render_output', function( $output, $params ) {
$output['settings']['my_data'] = 'some data';
return $output;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment