2015-12-07 61 views
1

我已經在我的網站上設置了一個麪包屑,現在由於想要將WPML集成到網站中,我不能再使用硬編碼名稱保留主頁面包屑。WordPress - 將主頁標題拉到任何其他頁面的麪包屑

任何人都可以告訴我如何從前面/靜態頁面(主頁)拉標題?

我有下面的代碼:

echo '<li><a href="'. get_settings('home') .'">Home</a> > </li>'; 

,但我無法找到解釋如何做到這一點的文檔中任何事情。

感謝您的時間和幫助。

回答

0

您的意思是主頁或首頁?無論哪種方式,它將是get_options的變體。

檢查食譜。

獲取頭版ID:https://codex.wordpress.org/Function_Reference/get_the_title

頭版

echo '<li><a href="'. get_settings('home') .'">Home</a>'.get_the_title(get_option('page_on_front')).'</li>'; 

博客頁面

echo '<li><a href="'. get_settings('home') .'">Home</a>'.get_the_title(get_option('page_for_posts')).'</li>'; 
+0

https://codex.wordpress.org/Function_Reference/get_option#Parameters

由ID獲取一個網頁的標題 非常感謝您的幫助。這很好用! – Johnny

相關問題