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

mqtranslate langcode widget selector

説明

Extension of the mqtranslate plugin that creates a widget that displays a language selector with language codes. For example, if you have got a site in 3 different
languages (Deutsch, english, spanish), the widget will display: de | en | es

The plugin is compatible with Qtrasnlate Slug {qts}.

It also has got the following filters:

  • ‘lang-code-selector-content’ => This filter allows alter the content of each idiom.

Arbitrary section

インストール

  • Install plugin either via the WordPress.org plugin directory, or by uploading the files to your server.
  • Activate the module.

FAQ

How can i change the content of the switcher?

Yes. It’s posible change the content of the selector. You only have to add a filter in the functions.php in your theme or add the code in yoyr custom plugin.

For example:

add_filter( ‘lang-code-selector-content’, ‘test_lang_code_selector_content’ );

function test_lang_code_selector_content( $lang_code ){
global $q_config;
$link_flag_url = dirname(plugins_url()) . ‘/’ . $q_config[‘flag_location’] . $q_config[‘flag’][$lang_code];
$link_flag = “”;
return $lang_code . $link_flag ;
}

How do i contribute to this plugin?

I’ve open a project in my github profile. Feel free to fork and change the code.

評価

このプラグインにはレビューがありません。

貢献者と開発者

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

貢献者

“mqtranslate langcode widget selector” をあなたの言語に翻訳しましょう。

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

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

変更履歴

1.0

  • Compatibylity with qransalte slug
  • Added filter: ‘lang-code-selector-content’
  • Realeased plugin.