Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

On wordpress my home page went to 404 page not found,I made my home page static, and my blank page posts, but that didn't work>

share|improve this question

closed as not a real question by toscho Jul 13 '12 at 20:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If you're using a custom menu, try going to the menu editor (Appearance>Menu's) and check to ensure it isn't a custom menu item. If that doesn't work, make sure you have the correct page selected in the Settings>Reading.. Front page displays: (Your Page).

If none of that works, you have a theme that is displaying the Home link from the header.php. Look for some code in your header.php <?php -->your code(Home)... , and remove Home,

or maybe sometinging like this in your functions.php file:

function home_page_menu_args( $args ) {
$args['show_home'] = true;
return $args;
}
add_filter( 'wp_page_menu_args', 'home_page_menu_args' );

Change show_home to false. If none of that works, maybe you can post your header.php content for us to look at.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.