如何在子页上显示父页摘录



在WordPress中,我有一个附件页面(子页面)。
如何在此页面上显示家长摘录?

<?php global $post;
if ( $post->post_parent ) { ?>
<?php echo get_the_excerpt( $post->post_parent ); ?>
<?php } ?>

谢谢你的帮助。
我真的很感激。

您可以使用wp_get_post_parent_id()

返回父条目的ID。

  • 来源@ https://developer.wordpress.org/reference/functions/wp_get_post_parent_id/

然后你可以通过get_the_excerpt()显示摘录,这将

检索文章摘要。

  • 来源@ https://developer.wordpress.org/reference/functions/get_the_excerpt/

您应该得到类似于(以下是未经测试的)

一行的内容
<?php
echo get_the_excerpt(wp_get_post_parent_id());
//...

相关内容

  • 没有找到相关文章

最新更新