Hi,
I tried searching for this solution but can't find one, hopefully someone can help me out.
I have a music website in development and I need to display the albums and songs of each artist that I have on the website, with the Songs appearing on their respective Artists posts.
So far I've created an "Artist" post type, which inlcudes the name, image and bio of the artist and also a second post type called "Songs" which is the list of songs from each artist.
The songs are attributed to their respective artist by using the "post relationship" between Artists and Songs post types.
However, I want to better organize the site by placing these songs into "Albums", which in turn would display inside their respective "Artists".
I'm thinking this could somehow be achieved by creating a taxonomy for "Albums", which would just be the name of the Album, so that each "Song" would be associated with its respective "Album" taxonomy. However, I'm not sure if this is the correct method for what I'm trying to achieve or how I would then display the Albums grouped with their respective songs inside the "Artists" post types.
I'm also wondering whether a better method would be to instead create a third post type for "Albums", which would then have a post relationship between "Artists" and "Songs"?
Here's an example of what I want:
ARTIST A:
Album #1
Song #1 belonging to album #1
Song #2 belonging to album #1
Song #3 belonging to almbum #1
etc etc
Album #2
Song #1 belonging to album #2
Song #2 belonging to album #2
Song #3 belonging to album #2
etc etc
ARTIST B:
Album #1
Song #1 belonging to album #1
Song #2 belonging to album #1
Song #3 belonging to album #1
etc etc
Album #2
Song #1 belonging to album #2
Song #2 belonging to album #2
Song #3 belonging to album #2
etc etc
And so on...
Is there a way to achieive this?
Thanks in advance.