Advertisement
Aurangajeb

Use different Site Icon (FavIcon) for different page/post

Jul 6th, 2021
1,436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. // Use different Site Icon (FavIcon) for different page/post
  2. add_filter( 'get_site_icon_url','change_site_favicon', 10, 3 );
  3. function change_site_favicon ($url, $size, $blog_id) {
  4.   global $post;
  5.   // Use is_single() to show in single post
  6.   if ( is_page( 13 ) ) $url = 'http://wpufdemo.local/wp-content/uploads/2021/07/Design-dream-img-37cdb084.png';
  7.   return $url;
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement