- In a html-file:
- <?=link_tag_cachebusting("metalmatze/css/wysiwyg.css");?>
- In application/helpers/MY_html_helper.php
- if (!function_exists('link_tag_cachebusting')) {
- function link_tag_cachebusting($href = '', $cachebusting = TRUE) {
- $CI = &get_instance();
- $CI->load->helper('html');
- return link_tags($href);
- }
- }