PluginProbe
Catch Web Tools / 0.1
Catch Web Tools v0.1
trunk 0.1 0.2 0.3 0.4 1.0 1.1 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.6 1.7 1.8 1.8.1 1.9 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 All 58 releases
catch-web-tools / frontend / inc / custom-css.php

custom-css.php in Catch Web Tools 0.1, at frontend/inc/custom-css.php

21 lines 496 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package Frontend
4 * @sub-package Custom Css
5 */
6
7 /**
8 * Get the custom css setting and format output
9 * @return [string] [custom css information]
10 */
11 function catchwebtools_custom_css_display(){
12 $customcss = get_catchwebtools_options( 'catchwebtools_custom_css' );
13
14 $output = '';
15 if( !empty ( $customcss ) ){
16 $output .= '<style type="text/css">'. PHP_EOL ;
17 $output .= $customcss . PHP_EOL ;
18 $output .= '</style>' . PHP_EOL ;
19 }
20 return $output;
21 }