Guest User

Untitled

a guest
Jun 25th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. //Replaced
  2. <a href="'.$term_link.'">'.$cat->name.'</a>';
  3.  
  4. //With
  5. if ( ! is_wp_error( $term_link ) ) {
  6. echo '<a href="'.$term_link.'">'.$cat->name.'</a>';
  7. }
Add Comment
Please, Sign In to add comment