Title: favicon
Last modified: September 21, 2023

---

# favicon

 *  [steveblues68](https://wordpress.org/support/users/steveblues68/)
 * (@steveblues68)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/favicon-112/)
 * How to add different favicon for any page ? Thank’s

Viewing 1 replies (of 1 total)

 *  [ying](https://wordpress.org/support/users/yingscarlett/)
 * (@yingscarlett)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/favicon-112/#post-17069650)
 * Hi [@steveblues68](https://wordpress.org/support/users/steveblues68/) ,
    1. remove the Favicon from the Customizer > Site Identity.
 * 2. add this PHP code, replace the page id 2459 and 2458 to the actual post id,
   then replace the image URLs.
 *     ```wp-block-code
       add_action('wp_head', function() {
           if (is_page(2459)) {
               echo '<link rel="icon" href="https://domainname.com/uploads/2020/10/10/favicon-2459.png" />';
           } elseif (is_page(2458)) {
               echo '<link rel="icon" href="https://domainname.com/uploads/2020/10/10/favicon-2458.png" />';
           } else {
               // Add a default favicon URL here
               echo '<link rel="icon" href="https://domainname.com/default-favicon.png" />';
           }
       });
       ```
   
 * Let me know if this helps!
    -  This reply was modified 2 years, 10 months ago by [ying](https://wordpress.org/support/users/yingscarlett/).

Viewing 1 replies (of 1 total)

The topic ‘favicon’ is closed to new replies.

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

 * 1 reply
 * 2 participants
 * Last reply from: [ying](https://wordpress.org/support/users/yingscarlett/)
 * Last activity: [2 years, 10 months ago](https://wordpress.org/support/topic/favicon-112/#post-17069650)
 * Status: not resolved