Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Created September 13, 2018 17:35
Show Gist options
  • Save kimcoleman/40a3a6a7671ac1c6859535463a01119e to your computer and use it in GitHub Desktop.
Save kimcoleman/40a3a6a7671ac1c6859535463a01119e to your computer and use it in GitHub Desktop.
Filter the Google Fonts weights loaded in Memberlite.
<?php // Do not copy this tag
/**
* Filter the Google Font weights loaded in Memberlite (as of version 4.0.1).
*
* Add this code below to a plugin for theme customizations.
*/
function my_memberlite_google_fonts_weights( $font_weights ) {
$font_weights = '300,400,700,900';
return $font_weights;
}
add_filter( 'memberlite_google_fonts_weights', 'my_memberlite_google_fonts_weights' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment