Replies: 0
Hello, I want to display all album by an artist. I have a page for the artist, I can display all single songs in different albums.
What I want is to display Album covers, album names, by a single artist.
What args do I need to pass to this? $terms = get_terms( ‘album’, $args );
I have tried this but does not work.
$terms = get_terms( array(
‘taxonomy’ => ‘album’,
‘meta_key’ => ‘artist’,
‘meta_value’ => $artist_name
) );
Thank you.