You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Changelog.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
## 2.10.1
2
+
* Fix: Deprecated function warning pointed to non-existent function.
3
+
* Documentation: update README.md code snippets to reflect new function names.
4
+
1
5
## 2.10.0
2
6
3
7
* Add prefixed public helper functions (msls_get_*, msls_the_msls) with deprecation shims for legacy names to satisfy WPCS while staying backward compatible.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,8 +53,8 @@ If you plan to use the GitHub repository on a server, don't forget to run `compo
53
53
* Optional Theme Integration:
54
54
* Insert the following PHP code directly into your theme files to display language switcher links:
55
55
```php
56
-
if ( function_exists( 'the_msls' ) ) {
57
-
the_msls();
56
+
if ( function_exists( 'msls_the_switcher' ) ) {
57
+
msls_the_switcher();
58
58
}
59
59
```
60
60
Review the [Multisite Language Switcher Website](http://msls.co/) for more information. Some [diagrams](https://github.com/lloc/Multisite-Language-Switcher/blob/master/Diagrams.md) are also available.
0 commit comments