Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active November 27, 2015 14:59
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 mgibbs189/50bf8df42aad5da264dc to your computer and use it in GitHub Desktop.
Save mgibbs189/50bf8df42aad5da264dc to your computer and use it in GitHub Desktop.
<?php
function fwp_sortby_views( $options, $params ) {
$options['views'] = array(
'label' => 'Most Views',
'query_args' => array(
'orderby' => 'post_views',
)
);
return $options;
}
add_filter( 'facetwp_sort_options', 'fwp_sortby_views', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment