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
[](https://www.repostatus.org/#active)
7
7
8
8
This plugin adds custom fields on menu item's edit screen of wp-admin.
This plugin adds custom fields on Appearance -> Menus page of wp-admin (see [screenshots](#screenshots)).
29
+
This plugin adds custom fields on Appearance -> Menus page of wp-admin (see [screenshots](#screenshots)) and supports only 1-level menu configuration.
30
30
It uses `wp_nav_menu_item_custom_fields` hook added in WordPress 5.4 release to add custom fields.
31
31
Below is the list of custom fields added by this plugin.
32
32
- Custom text
33
33
- Image selection with link and caption
34
34
- Shortcode with caption
35
35
- Custom HTML with tinyMCE editor
36
36
37
-
**Note:** This plugin works with default themes. In order to use it with custom themes, please add the necessary styling.
37
+
**Notes:**
38
+
39
+
- This plugin works with default themes. In order to use it with custom themes, please add the necessary styling in your theme/child theme to override the plugin's CSS.
40
+
- The custom fields from this plugin should be used in the submenu for well-structured and responsive UI.
41
+
- Currently, this plugin is not supported with FSE themes.
38
42
39
43
## Installation ##
40
44
@@ -57,7 +61,7 @@ Below is the list of custom fields added by this plugin.
57
61
- You can enter a URL in **Image Link** text field. On front-end, clicking on the image will lead to this URL.
58
62
- You can enter a caption text in **Image Caption** field and it'll be displayed below the image on the front-end.
59
63
#### Using Shortcode ####
60
-
- You can add a shortcode in **Shortcode** field. We've added some stylings to handle WordPress' defaut`[video]` shortcode.
64
+
- You can add a shortcode in **Shortcode** field. We've added some stylings to handle WordPress' default`[video]` and `[audio]` shortcode.
61
65
- You can enter a caption text in **Shortcode Caption** field and it'll be displayed below the shortcode on the front-end.
This plugin adds custom fields on menu item's edit interface of wp-admin.
12
12
13
13
== Description ==
14
14
15
-
This plugin adds custom fields on menu item's edit interface of wp-admin.
15
+
This plugin adds custom fields on the menu item's edit interface of wp-admin and supports only 1-level menu configuration.
16
16
Below is the list of custom fields this plugin adds.
17
17
18
18
- Custom text
19
19
- Image selection with link and caption
20
20
- Shortcode with caption
21
21
- Custom HTML with TinyMCE editor
22
22
23
-
**Note:** This plugin works with default themes. In order to use it with custom themes, please add the necessary styling.
23
+
**Notes:**
24
+
25
+
- This plugin works with default themes. In order to use it with custom themes, please add the necessary styling in your theme/child theme to override the plugin's CSS.
26
+
- The custom fields from this plugin should be used in the submenu for well-structured and responsive UI.
27
+
- Currently, this plugin is not supported with FSE themes.
24
28
25
29
== Installation ==
26
30
@@ -50,7 +54,7 @@ Below is the list of custom fields this plugin adds.
50
54
51
55
= Using Shortcode =
52
56
53
-
- You can add a shortcode in **Shortcode** field. We've added some stylings to handle WordPress' defaut `[video]` shortcode.
57
+
- You can add a shortcode in **Shortcode** field. We've added some stylings to handle WordPress' default `[video]` and `[audio]` shortcode.
54
58
- You can enter a caption text in **Shortcode Caption** field and it'll be displayed below the shortcode on the front-end.
55
59
56
60
= Using Custom HTML =
@@ -61,10 +65,16 @@ Below is the list of custom fields this plugin adds.
61
65
62
66
== Screenshots ==
63
67
64
-
1. Custom fields added under Appearance -> Menus
65
-
2. Custom HTML
66
-
3. Image with custom text
67
-
4. Video via shortcode
68
+
1. Custom text field added under Appearance -> Menus
69
+
2. Custom text field (frontend)
70
+
3. Custom image field added under Appearance -> Menus from WP-Media
71
+
4. Custom image field (frontend from WP-Media)
72
+
5. Custom image field added under Appearance -> Menus from image url
73
+
6. Custom image field (frontend from image url)
74
+
7. Custom shortcode field added under Appearance -> Menus
75
+
8. Custom shortcode field (frontend)
76
+
9. Custom HTML field added under Appearance -> Menus
77
+
10. Custom HTML field (frontend)
68
78
69
79
== Hooks ==
70
80
@@ -192,6 +202,12 @@ Same [GPL](http://www.gnu.org/licenses/gpl-2.0.txt) that WordPress uses!
192
202
193
203
== Changelog ==
194
204
205
+
= 1.1 =
206
+
FIXED
207
+
* Fix UI bugs with default themes
208
+
* Fix fatal error related to unknown format specifier with PHP v8.x.x
0 commit comments