Created
March 19, 2018 14:34
-
-
Save FinalDestiny/489f52a908751c089b26989e72e01b44 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Find: | |
( $title ? sprintf( '<%1$s class="et_pb_module_header">%2$s</%1$s>', et_pb_process_header_level( $header_level, 'h1' ), $title ) : '' ), | |
( $subhead ? sprintf( '<span class="et_pb_fullwidth_header_subhead">%1$s</span>', $subhead ) : '' ), | |
replace it with | |
( $title ? sprintf( '<%1$s class="et_pb_module_header">%2$s</%1$s>', et_pb_process_header_level( $header_level, 'h1' ), do_shortcode($title) ) : '' ), | |
( $subhead ? sprintf( '<span class="et_pb_fullwidth_header_subhead">%1$s</span>', do_shortcode($subhead) ) : '' ), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment