ID; $compId = get_post_meta( $pageId, 'kepler_composition_id', true ); if($compId == ''){ $compId = get_site_option('kepler_default_composition'); } }else{ $compId = get_site_option('kepler_default_composition'); } if(!$compId) return false; $comp = get_post( $compId ); $footerId = get_post_meta( $comp->ID, 'kepler_comp_footer_id', true ); $footer = get_post( $footerId ); $output = $footer->post_content; return $output; } }