Beitragsbild auf Blogbeitrag statt auf Autor weiterleiten
function archive_img_link(){
?>
<script>
(function($){
$(document).ready(function(){
$(".entry-content-wrapper").each(function(){
var posturl = $(this).find("h2.post-title.entry-title a").attr("href");
$(this).find(".big-preview.multi-big a").attr("href", posturl);
});
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'archive_img_link');