PluginProbe
Translate and Go multilingual – Automatic AI translation – wpLingua / 2.16.7
Translate and Go multilingual – Automatic AI translation – wpLingua v2.16.7
2.16.7 2.16.6 2.16.5 2.16.4 2.16.3 2.16.2 2.16.1 2.16.0 2.15.2 2.15.1 2.15.0 2.14.3 2.14.2 2.14.1 2.14.0 2.13.1 2.13.0 2.12.3 2.12.2 2.12.1 trunk 1.0.3 1.0.4 1.0.5 1.1.0 All 112 releases
← All changes | inc/translation.php +19 -0 2.14.32.16.7 View file →
@@ -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 */