Advertisement
GochiSiyan

tag translate none

Jul 11th, 2021
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_filter('get_the_archive_title',function ($title, $original_title, $prefix){
  2. if ($prefix === 'Tag:') {
  3. $prefix = '';
  4. $title = sprintf(
  5. /* translators: 1: Title prefix. 2: Title. */
  6. _x( '%1$s %2$s', 'archive title' ),
  7. $prefix,
  8. '<span>' . $original_title . '</span>'
  9. );
  10. }
  11. return $title;
  12. },99999,3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement