How to change the wordpress default logo from the Admin?

后端 未结 5 474
-上瘾入骨i
-上瘾入骨i 2020-12-19 21:20

\"Wordpress

I want to create a custom logo so I need change the default logo of the wordpress logo.

5条回答
  •  离开以前
    2020-12-19 21:43

    Change your dashboard logo to custom logo with this code:

    add_action('admin_head', 'my_custom_logo');
    
    function my_custom_logo() {
    echo '
    
    ';
    }
    

提交回复
热议问题