Make only the image an anchor link using the advanced excerpt plugin?
To get a link around only part of the excerpt content you will need a filter on get_the_excerpt similar to the following: function dummy_excerpt_filter($excerpt) { // manipulate the excerpt return $excerpt; } add_filter(‘get_the_excerpt’,’dummy_excerpt_filter’); The problem with that is that the // manipulate the excerpt part means using regex on your excerpt content, which can be … Read more