abdulkrm

Trim the separator from the beginning

Nov 18th, 2023
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter( 'rank_math/frontend/title', function( $title ) {
  2. // Check if it is the homepage or a paginated homepage
  3. if ( is_front_page() || is_paged() ) {
  4. // Remove the first two characters from the title
  5. $title = substr( $title, 2 );
  6. }
  7.  
  8. return $title;
  9. });
Advertisement
Add Comment
Please, Sign In to add comment