{% if (meta.pageTotal > 1) { %}
{% if (typeof meta.sort !== 'undefined') { %} {% } %} {% if (typeof meta.sortOrder !== 'undefined') { %} {% } %} {% if (typeof meta.limit !== 'undefined') { %} {% } %}
Advanced

What Is Advanced Filtering?

Advanced filtering allows you to search more precisely by specifying the field, a comparison operator, and the value, e.g. title:Make It Happen (finds records where title "contains" the string "Make it Happen").

Comparison Options

Comparison Operator Explanation
Contains [:], [!:], [LIKE] or [NOT LIKE] The field contains the search string, e.g. title:Make It Happen
Equals [=] or [!=] The field equals or does not equal the search string, e.g. url=/Make-It-Happen
Greater or Lesser Than [>] or [<] The field is greater or lesser than the numeric or date value, e.g. modified>2014-10-14
Regular Expression [?], [!?], [REGEXP] or [NOT REGEXP] The field matches or doesn't match the advanced Regular Expressions that are supported by MySQL, e.g. content[?]This is (good|great)
In List [#], [!#], [IN] or [NOT IN] The field contains one of the values in the comma separated list, e.g. id[#]100,105,125

Valid Fields

{% if (typeof meta.searchable !== "undefined" && _.size(meta.searchable) > 0) { %} {% _.each(meta.searchable, function(description, alias) { %} {% }); %} {% } %}
Field Alias Description
{{ alias }} {{ description }}
{% } %}