0

マーキータグのショートコードを追加したいのですが、機能していません。フロントエンドに追加するにはどうすればよいですか?

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

1 に答える 1