| @@ -133,8 +133,27 @@ | ||
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | |
| 136 | 136 | /** |
| 137 | + * Get all saved translations for all languages from cache or wp_query | |
| 138 | + * | |
| 139 | + * @return array | |
| 140 | + */ | |
| 141 | +function wplng_get_translations() { | |
| 142 | + | |
| 143 | + $translations = get_option( 'wplng_cached_translations' ); | |
| 144 | + | |
| 145 | + if ( empty( $translations ) | |
| 146 | + || ! is_array( $translations ) | |
| 147 | + ) { | |
| 148 | + $translations = wplng_get_translations_from_query(); | |
| 149 | + } | |
| 150 | + | |
| 151 | + return $translations; | |
| 152 | +} | |
| 153 | + | |
| 154 | + | |
| 155 | +/** | |
| 137 | 156 | * Get all saved translations from a wp_query for all languages |
| 138 | 157 | * |
| 139 | 158 | * @return array |
| 140 | 159 | */ |