Title: Header image
Last modified: January 19, 2019

---

# Header image

 *  [esnoke](https://wordpress.org/support/users/esnoke/)
 * (@esnoke)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/header-image-281/)
 * How do I set a header image for my blog pages that is different from the homepage
   header? I see how to set a custom header for individual pages or posts but not
   for category pages…
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fheader-image-281%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Theme Author [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * (@kharisblank)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/header-image-281/#post-11109214)
 * Hello there,
 * Thank you for reaching out to me here.
 * For header image on specific post’s category, you could use the below snippet:
 *     ```
       add_filter( 'theme_mod_header_image', 'quna_my_custom_header_image', 37 );
       function quna_my_custom_header_image($url) {
   
         if( is_category('nice-look') ) {
           $url = 'http://www.wakecountybeekeepers.org/wp-content/uploads/2019/01/farmerlmafk.jpg';
         }
   
         return $url;
   
       }
       ```
   
 * Replace the category slug name in this line `if( is_category('nice-look') ) {`
   to match with your own. And define an image URL in **_$url_** variable. You can
   get it from the media library (Dashboard > Media).
 * To apply it to your site, you can use [Code Snippets plugin](https://wordpress.org/plugins/code-snippets/).
   Ensure it’s enabled on front-end.
 * Regards,
    Kharis

Viewing 1 replies (of 1 total)

The topic ‘Header image’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/quna/1.1.1/screenshot.png)
 * Quna
 * [Support Threads](https://wordpress.org/support/theme/quna/)
 * [Active Topics](https://wordpress.org/support/theme/quna/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/quna/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/quna/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Kharis Sulistiyono](https://wordpress.org/support/users/kharisblank/)
 * Last activity: [7 years, 5 months ago](https://wordpress.org/support/topic/header-image-281/#post-11109214)
 * Status: not resolved