Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FinalDestiny/489f52a908751c089b26989e72e01b44 to your computer and use it in GitHub Desktop.
Save FinalDestiny/489f52a908751c089b26989e72e01b44 to your computer and use it in GitHub Desktop.
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