Listo

説明

Listo は他のプラグインやテーマのためによく使われるリストを供給するシンプルなプラグインです。

使い方

$countries = listo(
    // List type
    'countries',
    // Options
    array(
        'group' => 'un',
        'orderby' => 'value',
        'order' => 'DESC',
    )
);

インストール

  1. listo フォルダーを /wp-content/plugins/ ディレクトリにアップロードします。
  2. WordPress の「プラグイン」メニューからプラグインを有効化します。

評価

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 );
12件のレビューをすべて表示

貢献者と開発者

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

貢献者

“Listo” は12ロケールに翻訳されています。 翻訳者のみなさん、翻訳へのご協力ありがとうございます。

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

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

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

変更履歴

1.8

  • modules/countries.php 内の国名を更新。
  • listo() のオプションとして orderbyorder のサポートを追加。
  • 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 以上を必要とする。