firoze

Google Font Usages BY SMOF

Dec 3rd, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1. Google Font Function For SMOF
  2. ==============================================================================
  3.  
  4. $of_options[] = array(  "name"          => "Select Google Font",
  5.                                                 "desc"          => "Normal Select Box.",
  6.                                                 "id"            => "google_font_select",
  7.                                                 "type"          => "select",
  8.                                                 "options"       => array("PT Sans","Open Sans","Droid Sans", "Caesar Dressing")
  9.                                 );    
  10.  
  11. Google Font Theming
  12. ==============================================================================
  13.  
  14. <?php global $data; ?>
  15. <?php if($data['google_font_select']): ?>
  16.  
  17. <link href='http://fonts.googleapis.com/css?family=<?php echo $data['google_font_select']; ?>:300,400,400italic,500,600,700,700italic&amp;subset=latin,greek-ext,cyrillic,latin-ext,greek,cyrillic-ext,vietnamese' rel='stylesheet' type='text/css' />
  18.  
  19. <style type="text/css">
  20. body.custom-font-enabled {font-family: '<?php echo $data['google_font_select']; ?>', sans-serif !important}
  21. </style>
  22.  
  23. <?php endif; ?>
Add Comment
Please, Sign In to add comment