Viewing 1 replies (of 1 total)
  • Plugin Author Dennis Ploetner

    (@realloc)

    Hi,

    you can define your own selector in the configuration page of the plugin. There are 4 fields (before output, after output, before item and after item). You could just insert there some HTML code or you can use some parameters in the function call:

    <?php
    
    if ( function_exists ( 'the_msls' ) ) {
        $args = array(
            'before_item'   => '<li>',
            'after_item'    => '</li>',
            'before_output' => '<ul id="msls-flags">',
            'after_output'  => '</ul>',
        );
        the_msls( $args );
    }
    
    ?>

    Read on here: http://msls.co/functions-classes-and-methods/

    Cheers,
    Dennis.

Viewing 1 replies (of 1 total)

The topic ‘Adding a space between flags’ is closed to new replies.