ACF Relationship – Get Parent’s Post Object

Since ACF Relationships doesn’t set any relationship as a parent or child,you’d be better of just getting the title from your post.

You could simply get the ID of your A page: the_title( '43' ); and output it like this, or if the post is actually a parent, you could simply do the_title( wp_get_post_parent_id() ); on your child template.