Advertisement
swte

mhcookie_get_template filter example

Nov 27th, 2024
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. add_filter('mhcookie_get_template', function($html, $template){
  2.     if ($template == 'preferences-toggle'){
  3.         // return your own HTML
  4.     }
  5.     return $html;
  6. },10,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement