Skip to content

Instantly share code, notes, and snippets.

@alanef
Created August 25, 2021 20:18
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 alanef/8674d782f64cd3f08ba542b6932c7489 to your computer and use it in GitHub Desktop.
Save alanef/8674d782f64cd3f08ba542b6932c7489 to your computer and use it in GitHub Desktop.
<?php
add_shortcode( 'my_filter', function ( $atts ) {
ob_start();
?>
<form method="get">
<select name="category_name">
<option value="name1">Name1</option>
<option value="name2">Name2</option>
</select>
<input type="submit" value="Filter">
</form>
<?php
return ob_get_clean();
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment