問題描述

是否可以用程式碼更改頁面標題?

例如,假設該頁面的名稱是 「預訂訂單」,但是我想將其更改為 「訂單#123」 。

我有點兒看著這裡,沒有看到任何東西。任何人知道外掛或駭客?

wp_title 返回頁面標題,但不允許設定頁面標題:http://codex.wordpress.org/Function_Reference/wp_title

最佳解決方案

沒有檔案,但您可以隨時向 the_title 應用過濾器,如下所示:

add_filter('the_title','some_callback');
function some_callback($data){
    global $post;
    // where $data would be string(#) "current title"
    // Example:
    // (you would want to change $post->ID to however you are getting the book order #,
    // but you can see how it works this way with global $post;)
    return 'Book Order #' . $post->ID;
}

看到這些:

http://codex.wordpress.org/Function_Reference/the_title

http://codex.wordpress.org/Function_Reference/add_filter

參考文獻

注:本文內容整合自 Google/Baidu/Bing 輔助翻譯的英文資料結果。如果您對結果不滿意,可以加入我們改善翻譯效果:薇曉朵技術論壇。