0

我有一个 div,其中包含一个电话号码。

然后,我有多个区域页面,位置从中发生变化。

如何根据已加载的区域页面以及该页面是否为区域页面来更改标题中的电话号码...

除了区域页面之外,我希望每一页都有一个编号,我想要单独的编号...

我该怎么做?

提前致谢。

4

1 回答 1

0

您可以为显示特定部分的页面创建自定义模板或使用 is_page();

http://codex.wordpress.org/Function_Reference/is_page

可以与页面 id 或 slug 一起使用;

if (is_page(42)) {
    // Show something specific to page 42.
}

您可以通过单击 Wordpress Pages 管理菜单中的页面来查看页面 ID,您可以在 url 中看到 id。

if (is_page('Contact')) {
    // This uses the slug, but of course the client might change that slug which will break the functionality
}
于 2012-12-15T15:21:41.330 回答