First off, I saw similar posts already, but they weren't exactly what I am asking.
I used the Facebook Dev to create a like button for my website, stuck the code in and the the button showed up. The only issue is that it likes the wrong url when I click the button.
I'm pretty sure the issue is that I have it set to redirect automatically from mydomain.com to the most recent post. I think this is gumming up the works with the like button and causing it to like mydomain.com/mostrecentpost instead of simply liking mydomain.com.
Is there a way to correct this issue without having to get rid of the redirect (because that isn't an option)?
Sorry if that was a little wordy, wanted to make sure I explained the issue fully.
<iframe src="//www.facebook.com/plugins/like.php?send=false&layout=standard&width=450&show_faces=false&action=like&colorscheme=dark&font&height=35&appId=267618486682748" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowTransparency="true"></iframe>– Virendra Aug 20 '12 at 15:39<iframe src="//www.facebook.com/plugins/like.php?href=<?php url_encode(the_permalink()); ?>send=false&layout=standard&width=450&show_faces=false&action=like&colorscheme=dark&font&height=35&appId=267618486682748" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowTransparency="true"></iframe>– Virendra Aug 20 '12 at 20:52