説明
Listo は他のプラグインやテーマのためによく使われるリストを供給するシンプルなプラグインです。
使い方
$countries = listo(
// List type
'countries',
// Options
array(
'group' => 'un',
'orderby' => 'value',
'order' => 'DESC',
)
);
インストール
listo
フォルダーを/wp-content/plugins/
ディレクトリにアップロードします。- WordPress の「プラグイン」メニューからプラグインを有効化します。
評価
2023年6月18日
Great country list to avoid us to list them manually
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
貢献者と開発者
変更履歴
1.8
- modules/countries.php 内の国名を更新。
listo()
のオプションとしてorderby
とorder
のサポートを追加。- ISO 3166-1 Alpha-2 / Alpha-3 コードの対応表として modules/countries-a2a3.php を追加。
- ITU-T E.164 国際電話呼び出しコードのリストとして modules/telephone-country-codes.php を追加。
- WordPress 6.4 以上を必要とする。
1.7
- WordPress 6.2 以上、PHP 7.4 以上を必要とする。