page template – undefined structure in source code

Search all your theme and plugin files for: <!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN” Disable all plugins and re-enable them step by step. This document type declaration is not part of WordPress’ core files; there is a filter active somewhere. Update Try to remove all filters from the affected functions. Start with wp_list_pages(): remove_all_filters( … Read more

my blog crashes ie7?

You have a javascript error on line 451: ReferenceError: Can’t find variable: jQuery. and then Failed to load resource: the server responded with a status of 403 (Forbidden): axx1cxj-b.css. The second one looks like s stylesheet that typekit is trying to load.

Fix warning: Missing argument

do_action( ‘after_setup_theme’ ); doesn’t pass any parameter. You are cutting something of the length 0 after theme setup. Why? Plus, your registration with add_action doesn’t tell WordPress that you want two parameters. The default is one parameter. You don’t need this call at all. If you define the function in your functions.php it will be … Read more