Skip to content

Instantly share code, notes, and snippets.

@Pross
Created August 18, 2014 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pross/7f558a54138c46a039db to your computer and use it in GitHub Desktop.
Save Pross/7f558a54138c46a039db to your computer and use it in GitHub Desktop.
<?php
add_action( 'after_setup_theme', 'my_add_filter' );
function my_add_filter() {
add_filter( 'pless_vars', 'my_pless_vars' );
}
function my_pless_vars( $vars ){
$vars['plBaseFont'] = '"ff-tisa-web-pro",georgia,serif;';
return $vars;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment