How change the header color?

(1) In your twentyten theme’s style.css file, find this rule: #access { background: #000; display: block; float: left; margin: 0 auto; width: 940px; } the black color comes from this property ang change it to your liking: background: #000; (2) In your twentyten theme’s style.css file, find this rule: #access a { color: #aaa; display: … Read more

wp_redirect() is not working

Add ob_start(); at the top of functions.php file and remove from your code. As WP is a combination of plugin and core files and we don’t know which code sends the throws the header sent warning. And we know that functions.php is called every time we made a request to server, so this is the … Read more

making posts linked outside of WordPress still use the same header and footer

You’ll either need to load in WordPress, which can be considered computationally expensive if your ‘other’ pages are also powered by another webapp (not to mention the conflicts it may bring). If they’re just regular PHP files, you should be OK. To load WordPress, include the file /path/to/wordpress/wp-load.php, then you’ll be able to use WordPress … Read more

change headline of page

I’m still somewhat unclear as to the question, hope I got it. You can change the menu item text without changing the post name right from the admin.

After being hacked Fatal error: Call to undefined function get_header() in 404.php on line 1

“Generally this happens when someone has mistakenly put index.php from a theme in the WP install folder, where it overwrites the index.php that is the main WordPress file. Download WordPress again, and take the one file, index.php from its root folder, replacing the file you now have as index.php It sometimes means someone has loaded … Read more

How to remove uncategorised posts from WordPress

You have to add the argument to exclude the ‘Uncategorised’ category using this: <?php wp_list_categories(‘title_li=&exclude=XX’); ?> where XX is the ID of the category to exclude. Here is the codex page http://codex.wordpress.org/Template_Tags/wp_list_categories#Include_or_Exclude_Categories