Advertisement
fahimmurshed

Astra Cart Title Function

Jan 25th, 2021
958
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. function cart_title_example_callback( $title ) {
  2. // Modify the $title as per your requirement
  3. $title = "My Money";
  4. return $title;
  5. }
  6. add_filter( 'astra_header_cart_title', 'cart_title_example_callback' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement