Gallery
91FooGallery is a fast, responsive photo gallery and image gallery plugin with 7 gallery layouts, built-in light...
Add featured audio to your posts and pages, like featured images.
Featured Audio is a WordPress plugin that allows users to add audio files as featured content on posts and pages. It provides a metabox for uploading or selecting audio files from the media library, which can then be displayed at the top of the content. This plugin is particularly useful for musicians and podcasters who want to present audio in a structured way.
The plugin also includes a featured audio playlist widget, which can be added to sidebars, displaying a playlist of all featured audio files. Developers can customize the display of featured audio by adding theme support and modifying supported post types through provided API functions.
Best for: This plugin suits musicians, podcasters, and anyone who publishes audio content on WordPress.
What it does well
Where it falls short
Featured Audio provides a straightforward way to manage audio content on WordPress sites. It is useful for users looking to enhance their audio presentation without complex setups.
Nick Halsey's own description of Featured Audio, lightly tidied.
WordPress supports featured images out of the box, allowing images to represent posts in various ways defined by the theme. This plugin adds similar support for audio, allowing musicians, podcasters, and anyone who publishes audio with WordPress to feature audio files on posts and pages in a structured way. Each post and page gets a featured audio metabox where an audio file can be uploaded or selected from the media library.
By default, featured audio is displayed at the top of posts and pages (within the_content). Developers can change this by adding theme support for featured-audio, via several API functions listed below.
Why use featured audio instead of embeding audio directly into posts? Featured audio organizes the content in a structured way, alowing infinite possibilities to customize the way users experience audio content on your site. The plugin ships with one example of this – the featured audio playlist widget. Add this widget to your sidebar and it’ll automatically display a playlist of all of the audio files featured on posts shown on the current view, on views with more than one post such as the main blog page or a category page. The plugin also supports a recent audio playlist widget, which behaves similarly to a latest posts widget.
For a more comprehensive way to manage music with WordPress, particularly if you need to include sheet music alongisde audio, see the Sheet Music Library plugin.
add_theme_support( 'featured-audio' )
Adding theme support for featured audio tells the plugin not to add the featured audio to the content automatically. Instead, you can add featured audio exactly where you want it with the_featured_content() (see below for details).
By default, the post and page post types are supported. You can use the featured_audio_post_types filter to modify this list. For example:
add_filter( 'featured_audio_post_types', 'prefix_featured_audio_post_types' );
function prefix_featured_audio_post_types( $post_types ) {
// Add support to the sheet_music post type.
$post_types[] = 'sheet_music';
// Overwrite the entire list to remove support on pages.
$post_types = array( 'post' );
return $post_types;
}
Display the featured audio, if it exists.
Parameters:
$args array Display options.
$args['id'] int Post id (optional). Defaults to current post id.
$args['album_art'] boolean Whether to display the album art for the featured audio cycle. Default: false.
$args['album_art_size'] string Size to use for the album art picture. Default: thumbnail.
$args['title'] boolean Whether to display the title of the audio attachment. Default: false.
Other plugins for musicians and bands.
FooGallery is a fast, responsive photo gallery and image gallery plugin with 7 gallery layouts, built-in light...
The fastest drag & drop photo gallery plugin. Create stunning image galleries, albums, video galleries &am...
Create responsive photo, image, video, and mixed media galleries for WordPress with gallery blocks, albums, sl...
The most popular gallery plugin that lets you create galleries and albums in seconds.
The most advanced Audio Player for Music & Podcast. For Elementor, Gutenberg, WooCommerce and more. Add un...
Create responsive WordPress photo galleries, album galleries, gallery groups, lightbox galleries, optimized im...