Skip to content

Instantly share code, notes, and snippets.

@mrlannigan
Created November 30, 2011 13:59
Show Gist options
  • Save mrlannigan/1409150 to your computer and use it in GitHub Desktop.
Save mrlannigan/1409150 to your computer and use it in GitHub Desktop.
Custom Query Plugin Help for oomskaap
<?php
function register_price() {
$direction = "DESC"; //Default direction
if (isset($_GET["order_dir"]) && $_GET["order_dir"] == "ASC") {
$direction = "ASC";
}
register_custom_queryable_field("price", array("dataType" => "numeric", "order" => $direction));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment