In WordPress, the Audio Shortcode provides a convenient way to embed and play audio files on your website. Whether you want to showcase your latest podcast episode or add background music to your blog post, the Audio Shortcode offers flexibility and simplicity. This blog post will explore the usage, options, and benefits of the Audio Shortcode in WordPress.
Usage
Using the Audio Shortcode is straightforward. Place the following shortcode in your post or page:
Note: Avoid leaving a space between “[” and “audio” to ensure proper functioning.
If you have a specific audio file in the Media Library that you want to use, you can specify the source URL with the following shortcode:
Additionally, you can provide fallbacks for different HTML5-supported filetypes, such as MP3, OGG, and WAV:
Options
The Audio Shortcode offers several options to customize the behavior of the embedded audio. Here are some commonly used options:
- src (string, optional): Specifies the source URL of the audio file. If omitted, the shortcode will automatically use the first audio file attached to the post.
- loop (string, optional): Allows for media looping.
- “off” (default): The media will not loop.
- “on”: The media will loop back to the beginning when finished, continuing to play automatically.
- autoplay (string, optional): Enables automatic playback of the media.
- “off” (default): The media will not play automatically.
- “on”: The media will start playing as soon as it is ready.
- preload (string, optional): Specifies how the audio should be loaded when the page loads.
- “none” (default): The audio will not be loaded initially.
- “auto”: The entire audio file will be loaded when the page loads.
- “metadata”: Only the audio metadata will be loaded initially.
Benefits
The Audio Shortcode offers several advantages for enhancing your WordPress website:
- Easy integration: Insert the shortcode, and your audio file is ready to play.
- Cross-browser compatibility: The shortcode ensures playback support across different browsers.
- Customization options: Control loop behavior, autoplay settings, and preloading based on your requirements.
- Multiple file format support: Provide fallbacks for various file types to ensure compatibility with different devices and browsers.