I'm building a WP site using the 'Flexible Theme' form Elegant Themes. The site is currently viewable at www.hatchgallery.co.uk/hatchgallery.
When you click on one of the latest pieces of artwork on the home page (each one is a separate project) I want to be able to provide a link inside the info box. The link should go to the category page for that particular project. The general idea is that the category will be the artists name so clicking on this link will take you to all work by this artist.
I've started with this
<a href="<?php echo esc_url( $project_category_link ); ?>">See More From This Artist</a>
But had no luck in getting it to work, any help?