Removing 'My Jobs' from header
In searching to remove links from the top nav menu it was suggested to edit theme-support.php
Looks like it's the right file, but when I comment out the code or remove it, the whole site crashes. What am I missing here? If I just wanted to remove the 'My Jobs' link I should comment out:
if (get_option('jr_myjobs_page_id')) :
$items .= '<li class="right ';
if (is_page(get_option('jr_myjobs_page_id'))) $items .= 'current_page_item';
$items .= '"><a href="'.get_permalink(get_option('jr_myjobs_page_i d')).'">'.__('My Jobs', 'appthemes').'</a></li>';
endif;
right?