Skip to content

Instantly share code, notes, and snippets.

@shubhw12
Created June 22, 2020 09:46
Show Gist options
  • Select an option

  • Save shubhw12/ebb2d90e5cfcb305478e4a7278436885 to your computer and use it in GitHub Desktop.

Select an option

Save shubhw12/ebb2d90e5cfcb305478e4a7278436885 to your computer and use it in GitHub Desktop.
Add custom image background to advance header (page header ) on shop page.
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