llms_get_states()
Retrieve a list of states organized by country.
Description Description
See also See also
Return Return
(array)
Source Source
File: includes/functions/llms-functions-locale.php
function llms_get_states() { $states = require LLMS_PLUGIN_DIR . 'languages/states.php'; /** * Modify the default states list. * * @since 1.0.0 * * @param array $states Multi-dimensional array. See "languages/states.php" for details. */ return apply_filters( 'lifterlms_states', $states ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.0.0 | Introduced. |