| 1 |
<?php |
| 2 |
|
| 3 |
class WPUPG_Css { |
| 4 |
|
| 5 |
public function __construct() |
| 6 |
{ |
| 7 |
add_action( 'wp_head', array( $this, 'custom_css' ), 20 ); |
| 8 |
} |
| 9 |
|
| 10 |
public function custom_css() |
| 11 |
{ |
| 12 |
if( WPUltimatePostGrid::option( 'custom_code_public_css', '' ) !== '' ) { |
| 13 |
echo '<style type="text/css">'; |
| 14 |
echo WPUltimatePostGrid::option( 'custom_code_public_css', '' ); |
| 15 |
echo '</style>'; |
| 16 |
} |
| 17 |
} |
| 18 |
} |