<?php
if ( $countyPageId && function_exists("get_field") ) {
- if ( get_field( 'county_member_category_id' ) ) {
+ if ( get_field( 'member_county_id' ) ) {
$debugMsg[] = "using count page id";
- $memberCountyId = get_field( 'county_member_category_id' );
- } else if ( get_field( 'county_member_category_id', wp_get_post_parent_id() ) ) {
+ $memberCountyId = get_field( 'member_county_id' );
+ } else if ( get_field( 'member_county_id', wp_get_post_parent_id() ) ) {
$debugMsg[] = "using county page id of parent";
- $memberCountyId = get_field( 'county_member_category_id', wp_get_post_parent_id() );
+ $memberCountyId = get_field( 'member_county_id', wp_get_post_parent_id() );
}
}
?>