Advertisement
GochiSiyan

remove badge from email

Sep 28th, 2021
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_action('wp', function () {
  2. remove_filter('the_title','tmpl_badge_tag',10);
  3. });
  4. add_action('jnews_share_top_bar', function () {
  5. remove_filter('the_title','tmpl_badge_tag',10);
  6. },0);
  7. add_action('jnews_single_post_before_title', function () {
  8. add_filter('the_title','tmpl_badge_tag',10,2);
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement