如果你想把一个页面的内容调用到另一个页面,那么你需要custom template.
例如,如果您有2页(a页和b页),则为page a
. 现在您要添加的内容page b
进入page a
, 这可以通过以下代码完成
$include = get_pages(\'include=10\'); //Assigning ID of page
$content = apply_filters(\'the_content\',$include[0]->post_content);
echo $content;
在上面的代码中,我为get\\u pages()函数分配了ID 10,只是为了演示。将10替换为要在其中显示其内容的实际页面ID
page a
.
只需将上述代码粘贴在自定义模板(为a页制作)中,然后page b
内容将显示在该位置。