Advertisement
panovae

functions.php

Jan 22nd, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. add_action( 'after_setup_theme', 'twentyfourteen_cyr_theme_setup', 10 );
  3. function twentyfourteen_cyr_theme_setup() {
  4.  
  5. add_action('wp_print_styles', 'pae_load_fonts');
  6. }
  7. function pae_load_fonts() {
  8. wp_register_style('googleFonts', 'http://fonts.googleapis.com/css?family=Exo+2:400,300,700,900,300italic,400italic,700italic,900italic&subset=latin,cyrillic' );
  9. wp_enqueue_style( 'googleFonts');
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement