Created
June 22, 2020 09:46
-
-
Save shubhw12/ebb2d90e5cfcb305478e4a7278436885 to your computer and use it in GitHub Desktop.
Add custom image background to advance header (page header ) on shop page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action('wp', 'featured_image_call_back'); | |
| function featured_image_call_back(){ | |
| if(is_shop()){ | |
| add_filter('astra_advanced_headers_title_bar_bg', 'adv_header_call_back'); | |
| function adv_header_call_back(){ | |
| //Your featured image URL here: | |
| return 'http://woo-commerce.test/wp-content/uploads/2020/05/men-fashion-free-img.jpg'; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment