【发布时间】:2013-12-17 18:33:39
【问题描述】:
这是这个问题的延续: Wordpress Navigation Label in Browser tab 但恐怕我需要比之前的海报更多的指导。
我也想使用 WordPress 菜单中的导航标签,在页面的实际标题之前显示父导航标签(而不是父标题!)。
适用于父标题的代码如下:
<h1 class="page-title"><strong><?php
// If child page , also include the parent title:
if($post->post_parent)
{$parent_title = get_the_title($post->post_parent);
echo '<span>'.$parent_title.' — </span><br />';
}
the_title(); ?></strong></h1>
我想将 .$parent_title. 换成父导航标签。有没有办法呼应这个标签?
免责声明:我不是自愿选择的程序员 - 只有在我必须的时候,所以请温柔...
编辑:这是我正在谈论的导航标签:
【问题讨论】:
标签: wordpress navigation label