我在我的网站上设置了一个痕迹,现在由于想要将WPML集成到网站中,我不能再将主页面包屑留下硬编码名称了。
有谁能告诉我如何从前/静态页面(主页)中提取标题?
我有以下代码:
echo '<li><a href="'. get_settings('home') .'">Home</a> > </li>';
但无法在文档中找到解释如何执行此操作的任何内容。
感谢您的时间和帮助。
答案 0 :(得分:0)
您的意思是主页还是头版?无论哪种方式,它都是get_options
的变体。
检查手抄本。
获取首页ID:https://codex.wordpress.org/Function_Reference/get_option#Parameters
按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>';