Easy handle APlayer on WordPress. A shortcode for WordPress to using APlayer.
Support [audio]
tag, compatible with AMP.
- WordPress
- APlayer
Put class.aplayer.php
into your theme folder, then put this following code to your theme functions.php
:
class_exists('APlayerHandle') or require(get_template_directory() . '/class.aplayer.php');
$aplayer = new APlayerHandle;
$aplayer->init();
Shortcode example:
[aplayer mutex="true" autoplay="true" theme="#b7daff" preload="auto" mode="circulation" maxheight="500"]
[aplayer_trac title="あっちゅ~ま青春!" author="七森中☆ごらく部" src="http://devtest.qiniudn.com/あっちゅ~ま青春!.mp3" pic="http://devtest.qiniudn.com/あっちゅ~ま青春!.jpg"]
[aplayer_trac title="回レ!雪月花" author="小倉唯" src="http://devtest.qiniudn.com/回レ!雪月花.mp3" pic="http://devtest.qiniudn.com/回レ!雪月花.jpg"]
[/aplayer]
Audio tag shortcode example:
[audio src="http://devtest.qiniudn.com/あっちゅ~ま青春!.mp3" title="あっちゅ~ま青春!" author="七森中☆ごらく部"]
More information: https://kn007.net/topics/wordpress-blog-use-new-html5-player-aplayer/
DIYgod, the author of APlayer. Github repo
轻松的在WordPress使用上APlayer,短代码形式调用。
支持原生[audio]
标签,不影响AMP模式。
- WordPress
- APlayer
将class.aplayer.php
放在你主题的根目录下,然后将下面代码放在functions.php
里即可。
class_exists('APlayerHandle') or require(get_template_directory() . '/class.aplayer.php');
$aplayer = new APlayerHandle;
$aplayer->init();
短代码调用方式举例:
[aplayer mutex="true" autoplay="true" theme="#b7daff" preload="auto" mode="circulation" maxheight="500"]
[aplayer_trac title="あっちゅ~ま青春!" author="七森中☆ごらく部" src="http://devtest.qiniudn.com/あっちゅ~ま青春!.mp3" pic="http://devtest.qiniudn.com/あっちゅ~ま青春!.jpg"]
[aplayer_trac title="回レ!雪月花" author="小倉唯" src="http://devtest.qiniudn.com/回レ!雪月花.mp3" pic="http://devtest.qiniudn.com/回レ!雪月花.jpg"]
[/aplayer]
Audio短代码调用方式举例:
[audio src="http://devtest.qiniudn.com/あっちゅ~ま青春!.mp3" title="あっちゅ~ま青春!" author="七森中☆ごらく部"]
详细说明见:https://kn007.net/topics/wordpress-blog-use-new-html5-player-aplayer/
感谢DIYgod写的APlayer,Github项目地址