奇怪的问题,也许我的逻辑是关于这个,但我在Wordpress中有这个结构:
Page 1
第2页
在我的主题中,我将其输出为每个父母一页。
例如:
布局
<h1>title of page 1</h1>
<p>content of page 1</p>
之后有几个小块:
<div class="box first child-page">
box with content of child page of page 1
</div>
<div class="box second child-page">
box with content of child page of page 1
</div>
<div class="box last child-page">
box with content of child page of page 1
</div>
但;现在我的问题!当有人使用搜索框时,也显示子页面及其唯一的永久链接,这是正确的,但我需要它们链接到父页面。子页面不应作为唯一页面访问,但内容必须是可搜索的(因为内容确实存在于网页上)。希望你们明白我想说的是什么。我试图将子页面重定向到父页面,但我需要更容易的东西让我的客户端能够创建子页面,而不必担心301重定向。
问候。
答案 0 :(得分:1)
获取父网址你可以在子网页的循环中执行此操作
<?php
$parent = get_permalink($your_child_loop_variable->post_parent);
?>