Skip to content

Instantly share code, notes, and snippets.

@humayunahmed8
Created February 28, 2022 11:55
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 humayunahmed8/eb9d2ae0a6235d2e96c462f242f8e831 to your computer and use it in GitHub Desktop.
Save humayunahmed8/eb9d2ae0a6235d2e96c462f242f8e831 to your computer and use it in GitHub Desktop.
Remove existing function from main theme and redeclare function in child theme
<?php
// Remove tgmpa function from main theme and redeclare the function in child theme
function remove_content_filter() {
remove_filter( 'tgmpa_register', 'themeplace_register_required_plugins' );
}
add_action( 'after_setup_theme', 'remove_content_filter' );
@humayunahmed8
Copy link
Author

code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment