Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. function yanco_scripts() {
  4. if( !is_admin() ) {
  5.  
  6. $query_args = array(
  7. 'family' => 'Lora:400,700,400italic,700italic|Droid+Sans:400,700',
  8. 'subset' => 'latin,latin-ext',
  9. );
  10. wp_register_style( 'yanco-google-fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
  11. wp_enqueue_style('yanco-google-fonts' );
  12. }
  13. }
  14. add_action( 'wp_enqueue_scripts', 'yanco_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement