Advertisement
Guest User

Untitled

a guest
Aug 28th, 2019
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. add_filter( 'get_the_archive_description', function( $description ) {
  2.     if ( is_shop() ) {
  3.         $description = '';
  4.     }
  5.  
  6.     return $description;
  7. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement