سؤال

I want to add marquee tag short code its not working.How to add it in the front end ?

function marquee_shortcode( $atts, $content = null ) 
{
    return '<marqee>'.$content.'</marqee>';
}
    add_shortcode( 'marquee', 'marquee_shortcode' );
هل كانت مفيدة؟

المحلول

add_shortcode( 'marquee', function ($content = null ) {
    return (isset($content) && !empty($content))? ''.$content.'' : 'Please provide content';
});

will do the trick
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top