在PmWiki中获取另一页的标题

时间:2017-12-30 16:09:54

标签: php page-title pmwiki

我有一个有效的页面名称,我需要解析为页面标题。例如:

Main.TargetPage

(:title Page One:)
I am the page of which the title needs to be got.

Main.CurrentPage

(:title Example Page:)
I am the page that the PHP script is being run from.

如何从Main.TargetPage获取Main.CurrentPage的标题?

2 个答案:

答案 0 :(得分:1)

您可以使用此函数调用获取页面标题:

$PageTitle = PageVar(ResolvePageName('Main/TargetPage'), '$Title');

答案 1 :(得分:0)

您可以通过命令 {Main.TargetPage $ Title} 获取其他人的页面标题,请参见官方docs