| Versions | |
|---|---|
| 4.7 | theme_stylesheet_import($path, $media = 'all') |
Import a stylesheet using @import.
$path The path to the stylesheet.
$media The media type to specify for the stylesheet
A string containing the HTML for the stylesheet import.
includes/
<?php
function theme_stylesheet_import($path, $media = 'all') {
return '<style type="text/css" media="' . $media . '">@import "' . $path . '";</style>';
}
?>