Skip Navigation
availability:

WPML Version: 3.2

description:

Returns a WPML sub setting value.

type:
filter
category:
Miscellaneous
parameters:
apply_filters( 'wpml_sub_setting', mixed|bool $default, string $key, string $sub_key )
$default
(mixed|bool) (Required) The value to return if the settings key does not exist. Set to false if not using
$key
(string) (Required) The settings name key the sub key belongs to
$sub_key
(string) (Required) The sub key to return the value of
hook example usage:

Example

// $my_book_translation_option will return the translation option configured for the custom post type 'book'
$my_book_translation_option = apply_filters( 'wpml_sub_setting', false, 'custom_posts_sync_option', 'book' );

// $my_author_translation_option will return the translation option configured for the custom taxonomy 'author'
$my_author_translation_option = apply_filters( 'wpml_sub_setting', false, 'taxonomies_sync_option', 'author' );