add_filter( 'wpml_ls_directories_to_scan', 'the_callback_function' );
- タイプ
- filter
- カテゴリー
- その他
- WPMLバージョン
- 3.6.0
説明
- 言語スイッチャーのテンプレートを含むディレクトリを追加します。
- このフックは、開発者がデフォルトディレクトリ
{your-theme-folder}/wpml/templates/language-switchers/の代わりに独自のディレクトリを追加したい場合に役立ちます。 - 詳細については、テンプレートファイルを使用したカスタム言語スイッチャーの設計ドキュメントをご覧ください。
引数
このフィルターに渡されるパラメーターはdirsの1つのみです。- $dirs
- (array) ディレクトリを含む配列。
使用例
例
function wpmlhook_ls_dirs_to_scan( $dirs ) {
$dirs[] = __DIR__ . '/templates/';
return $dirs;
}
add_filter( 'wpml_ls_directories_to_scan', 'wpmlhook_ls_dirs_to_scan' );
関連するフック
icl_ls_languages, wpml_sync_custom_field_copied_value, wpml_ls_enable_ajax_navigation, wpml_element_type, wpml_setting, wpml_sub_setting, wpml_exclude_post_from_auto_translate, wpml_forms_config_ninja-forms, wpml_forms_config_wpforms, wpml_tf_feedback_open_link