[Solution] Post’s Thumbnail doesn’t redirect to post’s URL
-
Hello guys!
I am going to help you if you need to redirect the post thumbnail to post’s url.
I have detected two issues on code on content.php file. The lines are:
Line 18 —> echo ‘; esc_url( get_permalink() ) ; echo ‘” >’;
Line 22 —> echo ‘ ; esc_url( get_permalink() ) ; echo ‘”> ‘;
You must to fix to:
Line 18 —> echo ‘, esc_url( get_permalink() ) ; echo ‘” >’;
Line 22 —> echo ‘ , esc_url( get_permalink() ) ; echo ‘”> ‘;
The developer put ; instead of ,
So you only put , on both lines.
I hope that I help you 🙂
The topic ‘[Solution] Post’s Thumbnail doesn’t redirect to post’s URL’ is closed to new replies.
