Title: Featured Audio
Author: Nick Halsey
Published: <strong>2016년 7월 12일</strong>
Last modified: 2024년 7월 12일

---

플러그인 검색

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://ps.w.org/featured-audio/assets/icon.svg?rev=1453109)

# Featured Audio

 작성자: [Nick Halsey](https://profiles.wordpress.org/celloexpressions/)

[다운로드](https://downloads.wordpress.org/plugin/featured-audio.1.2.zip)

 * [세부사항](https://ko.wordpress.org/plugins/featured-audio/#description)
 * [평가](https://ko.wordpress.org/plugins/featured-audio/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/featured-audio/#installation)
 * [개발](https://ko.wordpress.org/plugins/featured-audio/#developers)

 [지원](https://wordpress.org/support/plugin/featured-audio/)

## 설명

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](https://wordpress.org/plugins/sheet-music-library/)
plugin.

### Developer API Functions

#### Add Theme Support

    ```
    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).

#### Change Supported Post Types

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;
    }
    ```

#### the_featured_audio( $args )

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.
    ```

#### get_the_featured_audio( $args )

Get the featured audio, if it exists, as a string. Has the same arguments as `the_featured_audio()`.

#### get_featured_audio_src( $id )

Returns the url of the featured audio file, if it exists.

Parameter:

    ```
    $id int Post id (optional). Defaults to current post id.
    ```

#### get_featured_audio_attachment_id( $id )

Returns the id of the featured audio attachment, if it exists.

Parameter:

    ```
    $id int Post id (optional). Defaults to current post id.
    ```

#### get_the_featured_audio_playlist()

Get the featured audio playlist, if there are multiple posts with featured audio
in the current query. Used by the featured audio playlist widget.

#### the_featured_audio_playlist()

Displays (echoes) `get_the_featured_audio_playlist()`.

## 스크린샷

[⌊Featured audio metabox on the post edit screen in the admin.⌉⌊Featured audio metabox
on the post edit screen in the admin.⌉[

Featured audio metabox on the post edit screen in the admin.

[⌊Default featured audio dislpay with the Twenty Fifteen theme.⌉⌊Default featured
audio dislpay with the Twenty Fifteen theme.⌉[

Default featured audio dislpay with the Twenty Fifteen theme.

[⌊Custom featured audio display using the_featured_audio( array( 'title' => true,'
album_art' => true ) ); in a theme.⌉⌊Custom featured audio display using the_featured_audio(
array( 'title' => true, 'album_art' => true ) ); in a theme.⌉[

Custom featured audio display using `the_featured_audio( array( 'title' => true,'
album_art' => true ) );` in a theme.

[⌊Featured Audio Playlist Widget display with the Twenty Fifteen theme.⌉⌊Featured
Audio Playlist Widget display with the Twenty Fifteen theme.⌉[

Featured Audio Playlist Widget display with the Twenty Fifteen theme.

[⌊Featured Audio Playlist Widget display in the customizer.⌉⌊Featured Audio Playlist
Widget display in the customizer.⌉[

Featured Audio Playlist Widget display in the customizer.

[⌊Example of a Chromeless Widgets page featuring all of the audio on a site (also
via the Sheet Music library plugin), with playlist widgets. See the live page here.⌉⌊
Example of a Chromeless Widgets page featuring all of the audio on a site (also 
via the Sheet Music library plugin), with playlist widgets. See the live page here
.⌉[

Example of a [Chromeless Widgets page](https://wordpress.org/plugins/chromeless-widgets-page/)
featuring all of the audio on a site (also via the Sheet Music library plugin), 
with playlist widgets. [See the live page here](https://celloexpressions.com/music/playlists/).

## 설치

 1. Take the easy route and install through the WordPress plugin adder OR
 2. Download the .zip file and upload the unzipped folder to the `/wp-content/plugins/`
    directory
 3. Activate the plugin through the ‘Plugins’ menu in WordPress
 4. Add featured audio to your posts and pages, and optionally add the featured audio
    playlist or recent audio playlist widget to a sidebar.
 5. Developers can add support for additional post types and customize the display 
    of featured audio in themes. You can also customize the display with custom CSS
    in the customizer.

## FAQ

### How do I change where featured audio is displayed?

See the “Developer API Functions” section for information on how to change where
featured audio is displayed in your theme’s code.

### How does the playlist widget work?

The featued audio playlist widget pulls in the featured audio associated with all
of the posts displayed on the current view (auch as the blog index, a taxonomy archive,
or an author archive). It won’t display on single post or page views or on archive
views where none of the posts have featured audio selected.

## 후기

![](https://secure.gravatar.com/avatar/a2da844a3b0afaabfb74f6d60cd57a77cc51295ed2a04d2f218999a81c0fc872?
s=60&d=retro&r=g)

### 󠀁[A Must Have for Any Musician or Music Lover](https://wordpress.org/support/topic/a-must-have-for-any-musician-or-music-lover/)󠁿

 [mystercp](https://profiles.wordpress.org/mystercp/) 2026년 7월 28일

This is a brilliant plugin and should really be included in core. Thanks to Nick
for creating and maintaining an incredibly useful plugin!

![](https://secure.gravatar.com/avatar/d5e8e9b66b13766cd3129ad2f50e6a447f93d7b3fa62151ffae3450b32c1118d?
s=60&d=retro&r=g)

### 󠀁[A great idea!](https://wordpress.org/support/topic/a-great-idea-5/)󠁿

 [Gin](https://profiles.wordpress.org/rawdolphe/) 2024년 2월 16일

Thank you Nick, would love to see a Gutenberg Block for it! Featured Audio should
be part of WordPress Core.

![](https://secure.gravatar.com/avatar/a1c6d2af4d0f2658112a6fa5a1fd4b2ef8d2eb4c7f01bb20677e1b033c2472ba?
s=60&d=retro&r=g)

### 󠀁[Very useful](https://wordpress.org/support/topic/very-useful-963/)󠁿

 [aicart](https://profiles.wordpress.org/aicart/) 2016년 9월 3일

It is very useful! Thanks a lot.

![](https://secure.gravatar.com/avatar/5954a9f0b16f0328b4e07453044c7db44fa6ad32b235bd6baf4a9200511da32d?
s=60&d=retro&r=g)

### 󠀁[Nice tools to organize audio](https://wordpress.org/support/topic/nice-tools-to-organize-audio/)󠁿

 [Midwest_Bob](https://profiles.wordpress.org/midwest_bob/) 2016년 9월 3일

Like the description states, this is a clever way to organize and offer audio content
on a website.

 [ 모든 4 평가 읽기 ](https://wordpress.org/support/plugin/featured-audio/reviews/)

## 기여자 & 개발자

“Featured Audio”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에
기여하였습니다.

기여자

 *   [ Nick Halsey ](https://profiles.wordpress.org/celloexpressions/)

[자국어로 “Featured Audio”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/featured-audio)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/featured-audio/)는, [SVN 저장소](https://plugins.svn.wordpress.org/featured-audio/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/featured-audio/)
을 [RSS](https://plugins.trac.wordpress.org/log/featured-audio/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 1.2

 * Declare compatibility with the block editor in WordPress 5.0.

#### 1.1

 * Introduce a recent featured audio playlist widget.
 * Fixes and improvements to the `get_the_featured_audio()` function, props @jangeekho.

#### 1.0

 * Initial public release.

## 기초

 *  버전 **1.2**
 *  최근 업데이트: **2년 전**
 *  활성화된 설치 **400+**
 *  워드프레스 버전 ** 4.5 또는 그 이상 **
 *  다음까지 시험됨: **6.6.7**
 *  언어
 * [English (US)](https://wordpress.org/plugins/featured-audio/)
 * 태그:
 * [audio](https://ko.wordpress.org/plugins/tags/audio/)[media](https://ko.wordpress.org/plugins/tags/media/)
   [music](https://ko.wordpress.org/plugins/tags/music/)[podcast](https://ko.wordpress.org/plugins/tags/podcast/)
 *  [고급 보기](https://ko.wordpress.org/plugins/featured-audio/advanced/)

## 평점

 별 5점 만점에 5점.

 *  [  4/5-별점 후기     ](https://wordpress.org/support/plugin/featured-audio/reviews/?filter=5)
 *  [  0/4-별점 후기     ](https://wordpress.org/support/plugin/featured-audio/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/featured-audio/reviews/?filter=3)
 *  [  0/2-별점 후기     ](https://wordpress.org/support/plugin/featured-audio/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/featured-audio/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/featured-audio/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/featured-audio/reviews/)

## 기여자

 *   [ Nick Halsey ](https://profiles.wordpress.org/celloexpressions/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/featured-audio/)