説明
Listo は他のプラグインやテーマに対してよく使われるリスト (たとえば世界の国のリスト、ある国の区域のリスト、世界で使われる通貨のリスト、など) を供給するシンプルなプラグインです。Listo はまた、定義されたサブグループに基づいてリスト項目をフィルタリングすることもできます。例えば、「国」リストは ISO 3166 標準に基づいた国と属領のリスト (249項目) を提供しますが、その ‘un’ サブグループはその内の国連加盟国 (193項目) のみを含みます。
Listo は現在27種類のリストをサポートしています。
インストール
listo
フォルダーを/wp-content/plugins/
ディレクトリにアップロードします。- WordPress の「プラグイン」メニューからプラグインを有効化します。
評価
2021年5月27日
Hola como funciona, lo instale pero no veo las opciones
gracias
2020年8月29日
LISTO is an excellent little addition to Contact Form 7. Saves lots of time. Only one small snag in the list of countries is that they're sorted in alphabetical order of the 3-letter code for each country, rather than the country's name. Most of the time that makes hardly any difference, except for the United Kingdom, whose three-letter code is GBR, which places the UK between Gabon and Guinea (or somewhere around there) in the drop-down list, making it v diff to find. But this is easily sorted. Just manually move that line by editing the list in the file countries.php in wp-content/plugins/listo/modules/. Problem solved. Great plugin.
2020年5月11日
Excellent and useful plugin, unfortunately list countries are not accurately by alphabetical order.
Thanks to the community, add this to you function.php and it will work like a charm.
function wpcf7_listo_ordered( $data) {
sort($data);
return $data;
}
add_filter( 'wpcf7_form_tag_data_option', 'wpcf7_listo_ordered', 11, 1 );
2019年5月21日
Thank you so much for making this plugin.
2017年11月29日
Have a lot of default lists, but i couldn't customize with my own lists
2017年4月27日
Great plugin. Just want to suggest adding the date of birth option with date: 1 to 31, the months and years
貢献者と開発者
変更履歴
1.6
switch_to_locale()
およびrestore_previous_locale()
の関数呼出を削除。
1.5
- ポーランドの行政区域のモジュールを追加。
1.4
switch_to_locale()
を使用してロケールを切り替える。