birgire / wpse-playlist

WordPress - Playlist shortcode with external audio or video files. Wrapper for the native playlist in WordPress.
19 stars 8 forks source link

Shortcode playlist doesn't working #10

Closed kolyaraketa closed 8 years ago

kolyaraketa commented 8 years ago

Hi! I trying to use wp_playlist_shortcode for creating playlist with audio-files from all blog posts, i have array with ID.

I trying this code, and its doesn't working: $attch_id = array('76', '73', '70', '67'); wp_playlist_shortcode( array( 'ids' => '$attch_id' );

where is the mistake? How i can use wp_playlist_shortcode? Thanks )

birgire commented 8 years ago

Hi @kolyaraketa

Are you trying to use the plugin?

I'm not sure how your question relates to the plugin usage?

The plugin is using shortcodes to handle external playlist sources.

Otherwise your code has few issues, the ids should be a comma seperated string,

'ids' => '12,23,34,45',