Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Last active January 31, 2024 17:46
Show Gist options
  • Select an option

  • Save jennimckinnon/a65d307e9a3fcf8faa5e to your computer and use it in GitHub Desktop.

Select an option

Save jennimckinnon/a65d307e9a3fcf8faa5e to your computer and use it in GitHub Desktop.

Revisions

  1. jennimckinnon revised this gist Mar 3, 2015. 1 changed file with 9 additions and 5 deletions.
    14 changes: 9 additions & 5 deletions functions.php
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,9 @@
    function load_fonts() {
    wp_register_style('et-googleFonts', 'place Google link here');
    wp_enqueue_style( 'et-googleFonts');
    }
    add_action('wp_print_styles', 'load_fonts');
    function google_fonts() {
    $query_args = array(
    'family' => 'Open+Sans:400,700|Oswald:700'
    'subset' => 'latin,latin-ext',
    );
    wp_register_style( 'google_fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
    }

    add_action('wp_enqueue_scripts', 'google_fonts');
  2. jennimckinnon created this gist Mar 3, 2015.
    5 changes: 5 additions & 0 deletions functions.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    function load_fonts() {
    wp_register_style('et-googleFonts', 'place Google link here');
    wp_enqueue_style( 'et-googleFonts');
    }
    add_action('wp_print_styles', 'load_fonts');