このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Filter Anything

説明

Filter Anything offers Advance filters for any POST or USER data. You can instantly create any type of Directory with your choice of filters in different layout options using a simple shortcode.

At a glance, this plugin adds the following:

  • Instant Directory creation using shortcode
  • Ajax pagination
  • Multiple Layouts like: Fullwidth or Sidebar
  • Adjustable Grid column count in results
  • Filter any post type by: Meta field, Taxonomy, Title & Content, Post Date, Author or your own custom query
  • Filter any user type by: Meta field, Display Name, Email, Username, Registration date, Role or your own custom query
  • Supports changing Directory wise Label & button Titles
  • Set Order By and Per page count of the resulted data
  • customize look and feel by adding Quick CSS

Filter Anything acts as a standalone Directory to show your advance custom filters and results in your own choice of format.

Advance Usage (For Advance Users)

It’s very easy to modify result item template and to add your own custom query by using Filters:

Filter for modifying entry html (xx is filter id)

function example_callback( $html, $entry ) {
    ...
    return $html;
}
add_filter( 'wfa_directory_entry_html_xx', 'example_callback', 10, 2 );

Filter for modifying filter query args (xx is filter id)

function example_callback( $args, $filters, $form_data ) {
    ...
    return $args;
}
add_filter( 'wfa_directory_query_args_xx', 'example_callback', 10, 3 );

Form submit to another page

For showing only form and submitting on another url use following shortcode example

[wfa_filter id="xx" submit_url="https://www.example.com/some-other-page"]

スクリーンショット

  • Full width horizontal filter layout
  • Sidebar filter layout
  • Filter query settings edit
  • Filter layout settings edit
  • Filter fields edit
  • Filter directory default text edit
  • List of Filters in admin

評価

1件のレビューをすべて表示

貢献者と開発者

Filter Anything はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Filter Anything” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

0.1

Initial release.

0.1.1

  • Feature: Sort by and Total records counter added
  • Improvement: Prevent shortcode from being used multiple time on same page
  • Fix: Allow results to show even when no filters are selected
  • Fix: jQuery issues in Traditional themes is fixed, Now Filter will work even if jquery is added in footer

0.1.2

  • Fix: Taxonomy and Post type selection on filter is now lazy loaded. So, all the lately registered post types and Taxonomies can be selected
  • Fix: Hooks are modified to avoid conflicts
  • Fix: css changes applied to better support Enfold theme

0.1.3

  • Improvement: To show only child terms in filter you just need to enter slug instead of termID*
  • Fix: Multiple checkbox filter was only applying last selected entry, This is fixed now*
  • Fix: Added suppress_filters is query to prevent other plugins from interfering the results*

0.1.4

  • Improvement: Added post html classes on each article for better CSS flexibility*
  • Improvement: Added Taxonomy Pre Filters support to restrict directory results for selected taxonomy terms*