# About Page ACF Fields Update **Date:** 2026-01-23 **Author:** Claude Code ## Summary Added a new ACF WYSIWYG field to the About page to separate the second content section from the main page body. Previously, the page body content was appearing in both sections (duplicate content). ## Changes ### Content Structure (After) - **Top Story Section** (next to image): Uses standard WordPress page body content (`the_content()`) - **Additional Content Section** (below): Uses new ACF field `about_additional_content` ### ACF Field Added **Additional Content** - `about_additional_content` - WYSIWYG field - Displayed in a separate section below the story section - For extended company information ## Production Sync Instructions 1. Deploy the updated files: - `wp-content/themes/homeproz/inc/acf-fields.php` - `wp-content/themes/homeproz/page-about.php` 2. In WordPress Admin, edit the About page: - Keep the main story content in the standard WordPress page body editor - Add any additional content to the new "Additional Content" ACF field below ## Files Modified - `wp-content/themes/homeproz/inc/acf-fields.php` - Added `about_additional_content` field - `wp-content/themes/homeproz/page-about.php` - Top section now uses `the_content()`, bottom section uses ACF field