I already love Google Fonts, but we I recently learned you can add effects to them through Google’s own API – how great is that?? I don’t recommend using all these effects, but have fun trying a few:
See the full list of effects and find out more here: https://developers.google.com/fonts/docs/getting_started#Effects
To use them with your Genesis theme, simply add the ampersand with the effect after to your functions.php file. It should look something like this (Where the font name is Ranch, the weight being used is 400 and the effect being used is shadow-multiple) :
//* Enqueue Rancho Google font add_action( 'wp_enqueue_scripts', 'sp_load_google_fonts' ); function sp_load_google_fonts() { wp_enqueue_style( 'google-font-rancho', '//fonts.googleapis.com/css?family=Rancho:400&effect=shadow-multiple', array(), CHILD_THEME_VERSION ); }
Leave a Reply