Title: URL Query string option?
Last modified: November 28, 2017

---

# URL Query string option?

 *  [ShaOne](https://wordpress.org/support/users/shaone/)
 * (@shaone)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/url-query-string-option/)
 * Is it possible to filter on a ‘Wanna Isotope’ activated page using a URL query
   string?
 * Something like… [http://mydomain.com/services/?category=mycat](http://mydomain.com/services/?category=mycat)
   
   Which would filter to display items related to ‘mycat’ when loading page?
 * Many thanks

Viewing 1 replies (of 1 total)

 *  [flymke](https://wordpress.org/support/users/flymke/)
 * (@flymke)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/url-query-string-option/#post-10005260)
 * What you can do (e.g. in footer.php) is to simulate a click with jQuery:
 *     ```
       <?php if( ISSET($_GET['category']) ): ?>
       <script>
       	jQuery(document).ready(function( $ ) {
       		$('.filters').find('[data-filter=".<?php echo $_GET['category']; ?>"]').trigger( 'click' );
   
       	});
       </script>
       <?php endif; ?>
       ```
   
 * Mike

Viewing 1 replies (of 1 total)

The topic ‘URL Query string option?’ is closed to new replies.

 * ![](https://ps.w.org/wanna-isotope/assets/icon-256x256.png?rev=1361208)
 * [Wanna Isotope](https://wordpress.org/plugins/wanna-isotope/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wanna-isotope/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wanna-isotope/)
 * [Active Topics](https://wordpress.org/support/plugin/wanna-isotope/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wanna-isotope/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wanna-isotope/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [flymke](https://wordpress.org/support/users/flymke/)
 * Last activity: [8 years, 3 months ago](https://wordpress.org/support/topic/url-query-string-option/#post-10005260)
 * Status: not resolved