Skip to content

Instantly share code, notes, and snippets.

@palimadra
Created August 21, 2015 09:14
Show Gist options
  • Save palimadra/9e44741fa0d95441256f to your computer and use it in GitHub Desktop.
Save palimadra/9e44741fa0d95441256f to your computer and use it in GitHub Desktop.
How to enqueue a font properly in WordPress (specially from Google Fonts)
add_action( 'wp_enqueue_scripts', 'my_enqueued_assets' );
function my_enqueued_assets() {
wp_enqueue_style( 'my-font', '//fonts.googleapis.com/css?family=Roboto' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment