Skip to content

Instantly share code, notes, and snippets.

View rustigano's full-sized avatar
⛑️

Rustigano Lentamente rustigano

⛑️
View GitHub Profile
@mor10
mor10 / functions.php
Created July 11, 2016 21:04
Change default fonts in Twenty Sixteen Child Theme
<?php
// Override the parent theme fonts
function twentysixteen_fonts_url() {
$fonts_url = 'https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900,900i|Roboto+Slab:400,700';
return $fonts_url;
}
?>