SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <?php
- /** custom set a facet to a specfic value on FWP.reset() instead of clearing
- ** change 'categories' to the name of your facet and 'post-formats' to
- ** the value you want selected
- **/
- add_action( 'wp_footer', function() { ?>
- <script>
- (function($) {
- if ('object' !== typeof FWP) {
- return;
- }
- $(function() {
- FWP.hooks.addAction('facetwp/reset', function() {
- FWP.facets['categories'] = ['post-formats'];
- });
- });
- })(jQuery)
- </script>
- <?php }, 100 );
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.