Guest User

Untitled

a guest
Dec 12th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. wp_enqueue_script( 'MathJaxConfiguration', get_template_directory_uri() . '/js/MathJaxCfg.js', null, false, false );
  2.  
  3. add_filter( 'script_loader_tag', 'filter_script_MathJax', 10, 3 );
  4. function filter_script_MathJax( $tag, $handle, $src ){
  5. if ( 'MathJaxConfiguration' === $handle ) {
  6. return str_replace( 'text/javascript', 'text/x-mathjax-config', $tag );
  7.  
  8. }
  9. return $tag;
  10. }
Add Comment
Please, Sign In to add comment