Skip to content

Instantly share code, notes, and snippets.

@someguy9
Last active January 29, 2023 16:30
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 someguy9/e647df96eafe87aaf18301f89253e363 to your computer and use it in GitHub Desktop.
Save someguy9/e647df96eafe87aaf18301f89253e363 to your computer and use it in GitHub Desktop.
<?php
// Overwrite MightyShare title font-weight
function mightyshare_set_font_weight( $template_options ) {
$template_options['title_fontWeight'] = '900';
return $template_options;
}
add_filter( 'mightyshare_filter_post', 'mightyshare_set_font_weight', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment