I am doing some work on a real estate agent's pre-existing website which is WordPress-based and using a theme called Agentpress.
The theme appears to come with a built-in 404 error page, but when I test going to it, I'm just getting my browser's generic 404 error page. So, somehow the connect isn't happening between the theme's inbuilt page and what I see. Here is the code I found in the back end for this page:
<?php get_header(); ?>
<div id="content">
<?php include(TEMPLATEPATH."/breadcrumb.php");?>
<div id="contentleft">
<div class="postarea">
<h1><?php _e("Not Found, Error 404", 'agentpress'); ?></h1>
<p><?php _e("The page you are looking for no longer exists. Perhaps you can return back to the site's", 'agentpress'); ?> <a href="<?php bloginfo('siteurl');?>"><?php _e("homepage", 'agentpress'); ?></av
Any ideas of why this might not be working?






