EDD連携
この拡張機能にはProライセンスが必要です
現在のバージョン: 1.1.0
Easy Digital Downloadsは、デジタル製品の販売を非常に簡単にできる素晴らしいプラグインです。EDDには多くの機能がありますが、特に1つの機能はSearchWPのブリッジが必要です。EDDには、ダウンロードを出力するために使用できる[downloads]ショートコードがあり、一部のテーマ/プラグインは独自の検索機能を実装しています。EDD Integrationを使用すると、その機能と連携し、SearchWPを使用して結果を提供できます。
利用可能なフック
[downloads]ショートコードに使用するSearchWPエンジンを設定します(デフォルトはdefault)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function my_searchwp_edd_engine( $engine, $query, $atts ) { | |
| return 'default'; // the name of the engine you want to use for the [downloads] Shortcode | |
| } | |
| add_filter( 'searchwp_edd_engine', 'my_searchwp_edd_engine', 10, 3 ); |
変更履歴
1.0
- 初回リリース

