To the best of my knowledge, and based on my blog falling apart without it, I’ll answer your question with: very.
Oddly enough, if I put the slash on the end of mine, it breaks my blog. No, I have no idea why, I just know that I can’t put a final slash there.
So the short answer is use what works. 🙂
When I go to options and I add the ending slash like below http://clanobrien.us/blog/ and then I click on update it changes it back to http://clanobrien.us/blog
Any ideas ?
Does the blog work? If so, then I wouldn’t worry about it too much.
No, when you hit submit on the login it does not seem to re-direct correctly. Thus my users are not seeing “write post”, “manage post”, etc
Items that should become avaialable after signing in, but do not (see post.php, edit.php, etc.)
?php global $user_ID; ?>
<div id=”sidebar”>
<?php if ($user_ID) { ?>
<h2><?php _e(‘User Options’); ?></h2>
<?php } ?>
Login Form
<?php if (!$user_ID) { ?>
<h2><?php _e(‘Login’); ?></h2>
- <form name=”loginform” id=”loginform” action=”/blog/wp-login.php” method=”post”>
<label>Username: <input type=”text” name=”log” id=”log” value=”” size=”10″ tabindex=”7″ />
</label>
<label>Password: <input type=”password” name=”pwd” id=”pwd” value=”” size=”12″ tabindex=”8″ />
</label>
<label><input name=”rememberme” type=”checkbox” id=”rememberme” value=”forever” tabindex=”9″ />
Remember me</label>
<input type=”submit” name=”submit” id=”submit” value=”Submit” tabindex=”10″ />
<input type=”hidden” name=”redirect_to” value=”/” /></form>
<?php } ?>