在下面的代码中(位于functions.php
文件),参考(\'.get_bloginfo(\'template_url\').\'
, 我试图以我的孩子为主题,但它一直以家长为主题。
/* == Custom Login Logo ==============================*/
function custom_login_logo() {
echo \'<style>
.login h1 a { background:url(\'.get_bloginfo(\'template_url\').\'/images/logo-white.png) 0 0;background-size:218px 32px;height:32px;margin-bottom:10px;margin-left:20px;padding:0;width:218px }
</style>\';
}
add_action(\'login_head\', \'custom_login_logo\');
如何使其以子主题的主题文件夹为目标?