Front end user creation form! How do you keep the user on the same page in event of error?

Hook into registration_errors (The WP Codex is woefully incomplete on this, but see links below). Sorry this isn’t more helpful — the issue is a little more complex than it seems at the outset. I’ll look into it more later. Links: http://adambrown.info/p/wp_hooks/hook/registration_errors http://core.trac.wordpress.org/ticket/10672 http://codex.wordpress.org/Plugin_API/Filter_Reference/registration_errors and http://codex.wordpress.org/Plugin_API/Action_Reference/register_post

Show an image in my header.php

WordPress contains built-in support to select header images for a theme. You only have to indicate that your theme supports this, by calling add_custom_image_header(). See the Twenty Ten initialization for details. In your theme’s header.php you then call header_image() to get the current header image.

How to add a full edit link to front-end editor?

I assume the plugin is a separate thing and does its work by itself. What you need is to include in your theme template files the default Edit button. First off, you need a good code editor. Notepad++, Sublime Text, NetBeans, to cite a few. Check one of the default WordPress themes, TwentyTen, TwentyEleven or … Read more