Originally created by @floreo on GitHub (Jan 28, 2026).
Describe the Feature/Enhancement
Hello,
it would be nice to add a clickable link for the AUTHOR on the view of a media, like for the GENRES, this link would browse the list of medias belonging to the AUTHOR.
It would simplify the research as it's not possible to filter both by author and date for example.
Why would this be helpful?
My current use case is about podcast, if you have several podcasts of the same author, it's not always easy to find the one you would like to listen.
Future Implementation (Screenshot)
Maybe add a new view just like Home or Latest that would list the authors, a click on an author would list all its media.
Audiobookshelf App Version
Android App - 0.11.0
Current Implementation (Screenshot)
No response
Originally created by @floreo on GitHub (Jan 28, 2026).
### Describe the Feature/Enhancement
Hello,
it would be nice to add a clickable link for the AUTHOR on the view of a media, like for the GENRES, this link would browse the list of medias belonging to the AUTHOR.
It would simplify the research as it's not possible to filter both by author and date for example.
### Why would this be helpful?
My current use case is about podcast, if you have several podcasts of the same author, it's not always easy to find the one you would like to listen.
### Future Implementation (Screenshot)
Maybe add a new view just like Home or Latest that would list the authors, a click on an author would list all its media.
### Audiobookshelf App Version
Android App - 0.11.0
### Current Implementation (Screenshot)
_No response_
To clarify, this is specifically for podcasts, it is already implemented for audiobooks. This might be a backend change on the server side, I don't think any endpoints exist for podcast authors.
Book author filter below.
Podcast author view below
@nichwall commented on GitHub (Jan 28, 2026):
To clarify, this is specifically for podcasts, it is already implemented for audiobooks. This might be a backend change on the server side, I don't think any endpoints exist for podcast authors.
Book author filter below.

Podcast author view below

Hello, you are quite right, I hadn't noticed, but it works quite well for books ! It would be awesome to have it for Podcasts too.
Thanks for the clarification !
@floreo commented on GitHub (Jan 29, 2026):
Hello, you are quite right, I hadn't noticed, but it works quite well for books ! It would be awesome to have it for Podcasts too.
Thanks for the clarification !
In pages/bookshelf/authors.vue, this section may get in the way as well:
libraryChanged(libraryId) {
if (libraryId !== this.loadedLibraryId) {
if (this.$store.getters['libraries/getCurrentLibraryMediaType'] === 'book') {
this.init()
} else {
this.$router.replace('/bookshelf')
}
}
}
@abouthillier commented on GitHub (Mar 12, 2026):
In pages/bookshelf/authors.vue, this section may get in the way as well:
```
libraryChanged(libraryId) {
if (libraryId !== this.loadedLibraryId) {
if (this.$store.getters['libraries/getCurrentLibraryMediaType'] === 'book') {
this.init()
} else {
this.$router.replace('/bookshelf')
}
}
}
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @floreo on GitHub (Jan 28, 2026).
Describe the Feature/Enhancement
Hello,
it would be nice to add a clickable link for the AUTHOR on the view of a media, like for the GENRES, this link would browse the list of medias belonging to the AUTHOR.
It would simplify the research as it's not possible to filter both by author and date for example.
Why would this be helpful?
My current use case is about podcast, if you have several podcasts of the same author, it's not always easy to find the one you would like to listen.
Future Implementation (Screenshot)
Maybe add a new view just like Home or Latest that would list the authors, a click on an author would list all its media.
Audiobookshelf App Version
Android App - 0.11.0
Current Implementation (Screenshot)
No response
@nichwall commented on GitHub (Jan 28, 2026):
To clarify, this is specifically for podcasts, it is already implemented for audiobooks. This might be a backend change on the server side, I don't think any endpoints exist for podcast authors.
Book author filter below.

Podcast author view below

@floreo commented on GitHub (Jan 29, 2026):
Hello, you are quite right, I hadn't noticed, but it works quite well for books ! It would be awesome to have it for Podcasts too.
Thanks for the clarification !
@abouthillier commented on GitHub (Mar 12, 2026):
In pages/item/index.vue, I found:
As long as podcast authors as treated similarly to book authors, this might be any easy fix.
@abouthillier commented on GitHub (Mar 12, 2026):
In pages/bookshelf/authors.vue, this section may get in the way as well: