更改WordPress网站徽标URL

时间:2017-06-20 作者:sanjay

我正在尝试更改我的word press徽标网站。但我无法解决这个问题。

<?php
add_filter( \'login_headerurl\', \'custom_loginlogo_url\' );
function custom_loginlogo_url($url) {
    $link = \'http://www.example.com/\';
    return $link;
}
?>

1 个回复
SO网友:Vivek Tamrakar

Please follow this link same question here

Change logo url link

结束

相关推荐

Responsive Admin Themes

我在看这个管理主题的示例(http://themepixels.com/main/themes/demo/webpage/shamcey/dashboard.html). 至于标签为“Navigation”的左侧管理栏,有没有一种方法可以在不使用插件的情况下实现这种类型的左侧仪表板管理菜单?我想用css、js或Jquery来实现这一点,任何处理编码的东西都可以。