Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this questionIn my WordPress site, I want A image with changeable link in bottom of every post. The Image will be fixed but links should be changeable. I want This changeable link option in the post editor of wordpress so that I an Change the link as different post-different link. This links are the same post but in different language from sub-domain website.
Please help. Sorry for bad English. Thank You.
Closed. This question needs details or clarity. It is not currently accepting answers.Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this questionIn my WordPress site, I want A image with changeable link in bottom of every post. The Image will be fixed but links should be changeable. I want This changeable link option in the post editor of wordpress so that I an Change the link as different post-different link. This links are the same post but in different language from sub-domain website.
Please help. Sorry for bad English. Thank You.
Share Improve this question asked Jul 21, 2015 at 10:52 SayzarSayzar 133 bronze badges 2- Please post the code you have written and tested and tell us why it doesn't work. – Brad Dalton Commented Jul 21, 2015 at 11:17
- Let us know what you have tried up till now to get this done. – Mohammad Mursaleen Commented Jul 21, 2015 at 11:57
1 Answer
Reset to default 0I made this code with help from Google search. And it works fine. I added this code in single.php bottom of the post. Now, I simply add link in every post but image are same. Thanks. :)
<?php if( get_post_meta($post->ID, "imglink", true) ): ?>
<p><a href="<?php echo get_post_meta($post->ID, "imglink", true); ?>"><img src="http://-------------.png"></a></p>
<?php endif; ?>