Support » Plugin: SEO Auto Linker » Adding a CSS class to the generated links

Viewing 1 replies (of 1 total)
  • Plugin Author chrisguitarguy

    (@chrisguitarguy)

    the CSS class auto-link is added to all links in 0.9.1

    You can modify that programmatically with the seoal_link_class filter:

    <?php
    add_filter('seaol_link_class', function($cls) {
        $cls = 'my-custom-class';
        return $cls;
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Adding a CSS class to the generated links’ is closed to new replies.