Add a clickable image in sidebar : WordPress
Ideally inserting a clickable image in the sidebar for a WordPress website can be accomplished by the Image Widget.
https://wordpress.org/plugins/image-widget/screenshots/
Image Widget is good and popular, but if you need to place just one image and do not wish to use the plugin for the same, here is another way to do the same
The code for clickable image
The image should already be present in your media library. Add a Text Widget to the side bar and insert the following code.
<a href=”https://startblogwriting.com/start/” target=”_blank”><img class=”aligncenter” src=”https://startblogwriting.com/wp-content/uploads/2016/08/startblogwriting.png” alt=”Start Blog Writing” /></a>
href gives its the link to reach on click, target specifies it to open in a new window. SRC gives a link to the image in the media library.
The code inserted in a text widget can be seen at the following URL