Is there a way to add a button (like Sign Up) in the header? I basically just need two things in the header on the right side – a Login link (easy via menu) and a Sign Up button (not sure how to do that).
Thanks!
Hey franktw!
You can refer to this link: http://codex.wordpress.org/Function_Reference/wp_register
Edit header.php then add the code after the wp_nav:
<a href="http://www.example.com/wp-login.php?action=register">Register</a>
Replace http://www.example.com with your domain name.
Best regards,
Ismael
I’m thinking of showing an actual button instead of a link. For example:
Trying to create the “Buy Now” button.
Thanks again