Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Artist Archive Link Shortcode

// Add Shortcode
function artist_archive_link() {

	 . '<div class="artist-archive-link">' . sprintf(__('Finden Sie weitere Arbeiten dieses Künstlers in unserem %s.', 'karl-faber'), '<a href="' . get_term_link($artist_category[0]->term_id, 'product_cat') . '">' . __('Künstlerverzeichnis', 'karl-faber') . '</a>') . '</div>' : null;
	

}
add_shortcode( 'artist-archive-link', 'artist_archive_link' );