[Theme: twentytwelve] Enqueue two new Google Fonts
-
I’ve started a child theme with a separate functions.php file. I’m trying to enqueue two new Google fonts, but I’m clueless beyond using the snippet included in the functions.php file for turning Open Sans off.
/* Remove Google Open Sans */
function mytheme_dequeue_fonts() {
wp_dequeue_style( ‘twentytwelve-fonts’ );
}
add_action( ‘wp_enqueue_scripts’, ‘mytheme_dequeue_fonts’, 11 );
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘[Theme: twentytwelve] Enqueue two new Google Fonts’ is closed to new replies.