Add documentation for the default playlist shortcode attributes in wp_playlist_shortcode()
.
Props taylorde. Fixes #28678. git-svn-id: https://develop.svn.wordpress.org/trunk@28901 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
02094174f9
commit
978f3df40f
@ -1161,7 +1161,30 @@ add_action( 'wp_playlist_scripts', 'wp_playlist_scripts' );
|
||||
*
|
||||
* @since 3.9.0
|
||||
*
|
||||
* @param array $attr Playlist shortcode attributes.
|
||||
* @param array $attr {
|
||||
* Array of default playlist attributes.
|
||||
*
|
||||
* @type string $type Type of playlist to display. Accepts 'audio' or 'video'. Default 'audio'.
|
||||
* @type string $order Designates ascending or descending order of items in the playlist.
|
||||
* Accepts 'ASC', 'DESC', or 'RAND'. Default 'ASC'.
|
||||
* @type string $orderby Any column, or columns, to sort the playlist. If $ids are
|
||||
* passed, this defaults to the order of the $ids array ('post__in').
|
||||
* Otherwise default is 'menu_order ID'.
|
||||
* @type int $id If an explicit $ids array is not present, this parameter
|
||||
* will determine which attachments are used for the playlist.
|
||||
* Default is the current post ID.
|
||||
* @type array $ids Create a playlist out of these explicit attachment IDs. If empty,
|
||||
* a playlist will be created from all $type attachments of $id.
|
||||
* Default empty.
|
||||
* @type array $exclude List of specific attachment IDs to exclude from the playlist. Default empty.
|
||||
* @type string $style Playlist style to use. Accepts 'light' or 'dark'. Default 'light'.
|
||||
* @type bool $tracklist Whether to show or hide the playlist. Default true.
|
||||
* @type bool $tracknumbers Whether to show or hide the numbers next to entries in the playlist. Default true.
|
||||
* @type bool $images Show or hide the video or audio thumbnail (Featured Image/post
|
||||
* thumbnail). Default true.
|
||||
* @type bool $artists Whether to show or hide artist name in the playlist. Default true.
|
||||
* }
|
||||
*
|
||||
* @return string Playlist output. Empty string if the passed type is unsupported.
|
||||
*/
|
||||
function wp_playlist_shortcode( $attr ) {
|
||||
|
Loading…
Reference in New Issue
Block a user