Reputation: 21
I need to duplicate a hook from wordpress parent theme to child theme.
How do I disable the hook in wordpress parent theme and call it from child theme?
For example:
add_action('lr_header', 'lr_header_fnc');
Upvotes: 0
Views: 97
Reputation: 179
Maybe,
remove_action('lr_header', 'lr_header_fnc');
remove_action
Upvotes: 1