the url is : https://deepfry.wpconsult.net/
there are 2 links (home,projects) generated by code :
// Filter wp_nav_menu() to add additional links and other output
function wpc_nav_menu_items($items) {
$homelink = '<li class="home"><a href="' . home_url( '/' ) . '">' . __('Home') . '</a></li>';
$newestprojectlink = '<li class="projects"><a href="' . wpc_get_latest_project_url() . '">' . __('Projects') . '</a></li>';
$items = $homelink . $newestprojectlink . $items;
return $items;
}
and the rest are from a WP 3 nav menu.
when I activate the plugin, the menu items aren’t being created