Add Agent CPT with single-agent profile template

- Created Agent custom post type with ACF fields (phone, email, website, title, license, bio, gallery, social links repeater)
- Added single-agent.php template with modern profile layout: header with photo/contact buttons/social links, biography section, photo gallery, current listings, sidebar contact card
- Created single-agent.scss with responsive styling matching HomeProz dark theme
- Updated single-property.php sidebar: moved property header widget, added document downloads with primary button styling
- Imported 4 agents from homeprozrealestate.com with profile images
- Added agent scrape scripts for reference

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hanson.xyz Dev
2025-11-30 18:38:49 -06:00
parent fd0693e526
commit ef12be70ca
535 changed files with 158585 additions and 77 deletions
@@ -0,0 +1,74 @@
<?php
/**
* Attach Agent Images
*
* Run with: wp --allow-root eval-file attach-images.php
*/
$images_dir = dirname(__FILE__) . '/images';
// Map image filenames to agent names
$agent_images = [
'anna.webp' => 'Anna Rahn',
'davy.webp' => 'Davy Villarreal',
'jordan.webp' => 'Jordan Mullenbach',
'lily.webp' => 'Lily Dulitz',
];
echo "Attaching agent images...\n\n";
foreach ($agent_images as $filename => $agent_name) {
$image_path = $images_dir . '/' . $filename;
if (!file_exists($image_path)) {
echo "Image not found: $filename\n";
continue;
}
// Find the agent post
$agents = get_posts([
'post_type' => 'agent',
'title' => $agent_name,
'post_status' => 'publish',
'numberposts' => 1,
]);
if (empty($agents)) {
echo "Agent not found: $agent_name\n";
continue;
}
$agent_id = $agents[0]->ID;
echo "Processing: $agent_name (ID: $agent_id)\n";
// Check if already has featured image
if (has_post_thumbnail($agent_id)) {
echo " - Already has featured image, skipping...\n\n";
continue;
}
// Copy to temp location
$tmp_path = '/tmp/' . $filename;
copy($image_path, $tmp_path);
$file_array = [
'name' => $filename,
'tmp_name' => $tmp_path,
];
// Upload the image
$attachment_id = media_handle_sideload($file_array, $agent_id);
if (is_wp_error($attachment_id)) {
echo " - ERROR uploading: " . $attachment_id->get_error_message() . "\n\n";
continue;
}
// Set as featured image
set_post_thumbnail($agent_id, $attachment_id);
echo " - Uploaded and set as featured image (Attachment ID: $attachment_id)\n";
echo " - DONE\n\n";
}
echo "Complete!\n";