Quer colocar aquela tão sonhada caixa de login na sua sidebar do WordPress? Seu sonho vai virar realidade, haha!
Cole esse código onde você quiser que a caixa apareça (sidebar.php, index.html, etc):
<?php
global $user_ID, $user_identity;
get_currentuserinfo();
if (!$user_ID):
?>
<form name=”loginform” id=”loginform” action=”<?php echo get_settings(‘siteurl’); ?>/wp-login.php” method=”post”>
<p style=”line-height: 26px;”><label><?php _e(‘<strong>Login</strong>’) ?>: <input type=”text” name=”log” id=”log” value=”” size=”20″ tabindex=”7″ /></label><br />
<label><?php _e(‘<strong>Senha</strong>’) ?>: <input type=”password” name=”pwd” id=”pwd” value=”” size=”20″ tabindex=”8″ /></label><br />
<input type=”submit” name=”submit” value=”<?php _e(‘Entre ‘); ?>»” tabindex=”10″ />
<?php wp_register(”, ”); ?>
<input type=”hidden” name=”redirect_to” value=”<?php echo $_SERVER[‘REQUEST_URI’]; ?>”/></p>
</form>
<?php
else:
?>
</center>
<i>Logado(a) como <?php echo $user_identity; ?></i>
<ul style=”text-align: left”>
<?php wp_register(); ?>
<li><a href=”<?php echo get_settings(‘siteurl’) . ‘/wp-login.php?action=logout&redirect_to=’ . $_SERVER[‘REQUEST_URI’]; ?>”><?php _e(‘Logout’); ?></a></li>
<li><a href=”http://seublog.com/wp-admin/post-new.php” title=”Postar”>Novo Post</a> <b>|</b> <a href=”http://seublog.com/wp-admin/edit.php” title=”Editar posts”>Editar posts</a></li>
</ul>
<?php
endif;
?>