获取 PmWiki 中另一个页面的标题
Get the title of another page in 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.CurrentPage
获取 Main.TargetPage
的标题?
您可以使用此函数调用获取页面标题:
$PageTitle = PageVar(ResolvePageName('Main/TargetPage'), '$Title');
可以通过命令{Main.TargetPage$Title}获取对方的页面标题,查看官方docs:
我有一个有效的页面名称,我需要将其解析为页面标题。示例:
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.CurrentPage
获取 Main.TargetPage
的标题?
您可以使用此函数调用获取页面标题:
$PageTitle = PageVar(ResolvePageName('Main/TargetPage'), '$Title');
可以通过命令{Main.TargetPage$Title}获取对方的页面标题,查看官方docs: