if ( get_field( 'member_county_id' ) ) {
$debugMsg[] = "using count page id";
$memberCountyId = get_field( 'member_county_id' );
- } else if ( get_field( 'member_county_id', wp_get_post_parent_id() ) ) {
+ } else if ( get_field( 'member_county_id', wp_get_post_parent_id( $post ) ) ) {
$debugMsg[] = "using county page id of parent";
- $memberCountyId = get_field( 'member_county_id', wp_get_post_parent_id() );
+ $memberCountyId = get_field( 'member_county_id', wp_get_post_parent_id( $post ) );
+ } else {
+ $debugMsg[] = "no county page id?";
}
}
?>
// - county sub page: member db map for that county from custom field
// - any other page: crowdriff script from custom field if exists,
// --- otherwise featured image if exists
-
+ $debugMsg[] = "Is county child:" . $isCountyChildPage . " memberCountyID: " . $countyPageId;
?>
+
<?php if ( $isCountyLandingPage ) { ?>
<div id="header-crowdriff">
<?php echo the_field('interior_header_crowdriff_script',$post->ID); ?>