How to display a value from a parent page?
-
Hey everyone!
I’m using this awesome plugin. I’s been helping me a lot so far but now I have a quick question. It may have been aswerd before but I couldn’t find a solution that was working for me so far.
I have a parent page with multiple children. The children each have a sidebar that should display a file download link. The value for this field is set in the backend of the parent page.
This is my code so far (displaying a value set manueally on each child manually):
<?php $attachment_id = get_field('broschuren-download'); $url = wp_get_attachment_url( $attachment_id ); $title = get_the_title( $attachment_id ); if( get_field($post->post_parent, 'broschuren-download') ): ?><div class="pdf-download"> <p><a href="<?php the_field('broschuren-download'); ?>" >Broschüre herunterladen</a></p></div><?php endif; ?
Do you guys have an idea how to master this? Thanks in advance!
- The topic ‘How to display a value from a parent page?’ is closed to new replies.