WordPress Trick: Google MP3 Player Shortcode
Here’s another WordPress shortcode which is quite useful. It piggybacks on Googles excellent Flash-based MP3 player (the one they use in Gmail and so on), makes it easy to embed playable MP3s in your posts. Syntax: [mp3=path/to/filename.mp3]. Dump this in your functions.php:
function mp3player($attr) {
$src = str_replace("=", "", $attr[0]);
return '';
}
add_shortcode('mp3', 'mp3player');
Here’s an example:
Music by Speaker Bite Me.
- Flame Art
- WordPress Trick: Google MP3 Player Shortcode
- Wordpress Trick: Create A Google Viewer PDF Shortcode [Update]
- Android Market Finally Shows Updates To Your Apps
Hi. I have the theme Fauna in wordpress, and I see that you can use your own header. The problem is, I just don’t understand how to change the header picture? Could you help me with that ? (:
Thx for this :)
Thanks. That’s a pretty useful piece of code.
Its simple but very useful