block_core_navigation_submenu_render_submenu_icon()
Deprecated since 7.0.0. It is no longer supported and may be removed in future releases. Use block_core_shared_navigation_render_submenu_icon() instead.
Renders the submenu icon SVG for the Navigation Submenu block.
No Hooks.
Returns
String. SVG markup for the submenu icon.
Usage
block_core_navigation_submenu_render_submenu_icon();
Changelog
| Since 5.9.0 | Introduced. |
| Deprecated since 7.0.0 | Use block_core_shared_navigation_render_submenu_icon() instead. |
block_core_navigation_submenu_render_submenu_icon() block core navigation submenu render submenu icon code WP 7.0.2
function block_core_navigation_submenu_render_submenu_icon() {
_deprecated_function( __FUNCTION__, '7.0.0', 'block_core_shared_navigation_render_submenu_icon()' );
return block_core_shared_navigation_render_submenu_icon();
}