ID; // If custom page settings is enable $custom_footer_copyright_status = get_post_meta( $post_id, 'enable_custom_footer_copyright', true ); if( $custom_footer_copyright_status != true ){ return $default; } $value = get_post_meta( $post_id, $name, true ); $value = !empty( $value ) ? $value : $default; return $value; }