Advertisement
michaellevelup

Custom logo

May 6th, 2022
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. function king_change_logo($html){
  2.    
  3.     if (is_page('_YOUR_PAGE_SLUG_')){
  4.  
  5.         $logo_source = "ENTER YOUR LOGO IMAGE URL HERE";
  6.         return '<img width="ENTER LOGO WIDTH" height="ENTER LOGO HEIGHT" src="'.$logo_source.'" class="custom-logo" alt="Logo">';
  7.     }
  8.  
  9.     return $html;
  10. }
  11.  
  12. add_filter('kadence_custom_logo','king_change_logo');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement