Created
February 9, 2021 22:24
-
-
Save danielpost/75a83de74a87a512f2e1cfd8fc7a2cc3 to your computer and use it in GitHub Desktop.
Social Image Generator - Custom font
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'sig_template_font_file', function ( $path, $context ) { | |
if ( $context !== 'title' ) { | |
return $path; | |
} | |
return 'path/to/font.ttf'; | |
}, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment