Remove the Give version meta tag in the header

Remove the Give version meta tag in the header on child sites.

Snippet Type

Execute on Child Sites

Snippet

function remove_give_version_in_header() {
	remove_action( 'wp_head', 'give_version_in_header' );
}

add_action( 'wp_head', 'remove_give_version_in_header', 1 );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.