有没有办法对我在 WordPress 网站中附加的每个 MP3 文件进行编码?这是您访问源代码时代码的外观:
<ol class='songs'><li><a href='http://localhost/wordpress/wp-content/uploads/2011/10/f1678576.mp3' title='Song Title'>Artist - Song</a></li></ol>
PHP代码:
if ($attachments) {
echo "<ol class='songs'>";
foreach ($attachments as $attachment) {
echo "<li>";
echo wp_get_attachment_link($attachment->ID);
echo "</li>";
}
echo "</ol>";
}
我看到了 WPaudio 但不知道如何实现它。这是 WPaudio 代码的外观:
<pre><code><script type='text/javascript'>_wpaudio.enc['wpaudio-5019e1ff1c9da'] = '\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0075\u0072\u006c\u002e\u0074\u006f\u002f\u0079\u006f\u0075\u0072\u002e\u006d\u0070\u0033';</script><a id='wpaudio-5019e1ff1c9da' class='wpaudio wpaudio-enc' href='#'>Artist - Song</a></code></pre>
如果您有任何建议,请随时表达。谢谢你。