Rohan
Rohan

Reputation: 21

How to disable hook in wordpress parent theme from child theme

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

Answers (1)

dekameron
dekameron

Reputation: 179

Maybe,

remove_action('lr_header', 'lr_header_fnc');

remove_action

Upvotes: 1

Related Questions