fireflythemes

Modify shop header

Nov 9th, 2020 (edited)
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. add_filter( 'get_the_archive_title', function ( $title ) {
  2.     if ( class_exists( 'WooCommerce' ) && is_shop() ) {
  3.         $title = 'Shop';// Change this to anything you like.
  4.     }
  5.     return $title;
  6. });
  7.  
  8. add_filter( 'get_the_archive_description', function ( $desc ) {
  9.     if ( class_exists( 'WooCommerce' ) && is_shop() ) {
  10.         $desc = '';// Change this to anything to add description.
  11.     }
  12.     return $desc;
  13. });
Advertisement
Add Comment
Please, Sign In to add comment