hi
WordPress is installed on our dedicated server. If you dont use this theme it still doesn’t work.
to get to the admin panel i go to: https://dev.iceni-tv.co.uk/dsa/wp-login.php
doesn’t work even if i use a default theme.
Below is the navigation code.
<!-- Main Menu -->
<div id="menu">
<ul>
<?php
// Get array of pages and output with CSS classes to allow for image replacements
$pages = get_pages('sort_column=menu_order&parent=0');
foreach ($pages as $key=>$page) {
?>
<li>
<a href="<?php echo $page->guid; ?>" title="<?php echo $page->post_title; ?>"
class="<?php echo $page->post_name; ?><?php echo (($urlParts[0] == $page->post_name OR ($urlParts[0] == '' AND $page->post_name == 'home')) ? ' selected' : ''); ?>">
<?php echo $page->post_title; ?>
</a>
</li>
<?php
}
?>
</ul>
</div>