Add a Custom Wordpress Menu Item by Code
If you want to add a custom WordPress menu item by code, you can use the code below:
$menu_id = 11;
$menu_item_id = 0;
$params = array(
'menu-item-type' => 'custom',
'menu-item-url' => 'https://example.com/',
'menu-item-title' => 'Link Title',
'menu-item-status' => 'publish'
);
wp_u...