Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    You can embed new css files by using wpmm_styles filter. Example:

    function wp434_new_css_styles($styles) {
        $styles['new-style'] = 'path_to_css_file/style.css'; // replace with the real path :)
    
        return $styles;
    }
    
    add_filter('wpmm_styles', 'wp434_new_css_styles');

    Hi George,

    Where do we do this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘link css file’ is closed to new replies.