P粉2079697872023-08-31 14:12:44
You can create a shortcode and use it in the menu... You will need a code or plugin to allow inserting the shortcode in the menu. For example: shortcode in the menu.
You can then create a shortcode containing the elements you want to print and put it in your functions.php file as follows:
function function_whatever() { echo 'whatever'; } add_shortcode('shortcode_whatever', 'function_whatever');
The final step is to insert the shortcode into the menu:
[shortcode_whatever]