次のショートコードを使用して、ウェブサイトに再生ボタンとダウンロード ボタンを表示しました。しかし、コンテンツが展開されるとショートコードは正常に機能しますが、コンテンツが最小化されるとコードとして表示されます。修正方法がわかりません。助けてください. Web サイトにアクセスして、そこで問題を確認できます。
add_shortcode('myplaylist','playlist_function');
function playlist_function($atts)
{
extract( shortcode_atts( array(
'title'=>'',
'url'=>'#',
),$atts));
$output='<div class="songlinks" style="margin:5px 5px; width:30px; height:30px; float:left;">
<a href="'.$url.'" title="'.$title.'" name="'.$title.'" class="playbutton"> </a>
</div>
<div class="songdownloadlinks" style="margin:5px 5px; width:40px; float:left; height:30px;">
<a href="#" target="_blank" title="Download-'.$title.'" track_raw_url="'.$url.'"> </a>
</div>
<div style="padding:10px 5px;">'.$title.'</div>';
return $output;
}