0

我想添加字幕标签短代码它不起作用。如何在前端添加它?

function marquee_shortcode( $atts, $content = null ) 
{
    return '<marqee>'.$content.'</marqee>';
}
    add_shortcode( 'marquee', 'marquee_shortcode' );
4

1 回答 1

0
add_shortcode('选框',函数 ($content = null) {
    返回 (isset($content) && !empty($content))? ''.$content.'' : '请提供内容';
});

会成功的
于 2014-06-18T05:42:42.667 回答