2011-08-24 66 views
0

我正在更新舊的主題,並獲取此消息。wordpress更新棄用get_the_author功能

注意:get_the_author被稱爲與是<強>棄用< /強,因爲沒有可用的替代版本2.1 >參數。 in /srv/www/virtual/example.com/htdocs/zzblog/wp-includes/functions.php on line 3468 home page pageid-641 page-author-test page-template page-template-MIMindexMOD-php「>

我可以找到我的主題通話的functions.php如下:

c[] = 'page-author-' . sanitize_title_with_dashes(strtolower(get_the_author('login'))); 

這是get_the_author我能找到的唯一的參考在WordPress的法典它說全功能get_the_author折舊(以及通過的論點)所以想要更新但不知道如何。

回答

3

Just更換行:

c[] = 'page-author-' . sanitize_title_with_dashes(strtolower(get_the_author('login'))); 

本:

c[] = 'page-author-' . sanitize_title_with_dashes(strtolower(get_the_author())); 

如出現在http://codex.wordpress.org/Function_Reference/get_the_author的功能不會被棄用,只有已被棄用的參數,因爲現在該函數總是返回用戶的顯示名稱,所以無需指定所需的返回值是用戶的「登錄」。

+0

謝謝,救了我很多時間試圖弄清楚這一點! – macmiller

+0

很高興幫助:) – leticia