Edgewater Spotlight
Edgewater-February 10, 2025-admin0
Edgewater, Maryland, offers a variety of attractions, dining options, and shopping spots that are popular among locals and visitors alike. Here’s a curated list based on reputation and social media buzz: Historic London Town and Gardens – A 23-acre historic site featuring reconstructed colonial …
Edgewater-December 30, 2024-admin0
Why Supporting local business means more than ever Supporting local businesses isn’t just about shopping locally; it’s about investing in your community. Local mom-and-pop shops bring character to neighborhoods and foster a sense of belonging. Here’s why supporting them matters: Economic Growt…
Edgewater-December 16, 2024-admin0
Here are some reasons why Edgewater, Maryland is a great place to live, along with some of the sights to see, entertainment options, shops of interest, and information about the school system: Why Live in Edgewater, Maryland Sights to See Entertainment Shops of Interest School System The Anne Arunde…
// 1. Register the Business Post Type
add_action('init', function() {
register_post_type('business', [
'labels' => ['name' => 'Businesses', 'singular_name' => 'Business'],
'public' => true,
'show_in_rest' => true, // Allows React to talk to WP
'supports' => ['title', 'editor', 'thumbnail', 'excerpt', 'custom-fields'],
'menu_icon' => 'dashicons-store',
]);
});
// 2. Register Metadata fields (Address, Phone, Rating)
add_action('init', function() {
$meta_fields = ['address', 'phone', 'rating', 'business_category'];
foreach ($meta_fields as $field) {
register_post_meta('business', $field, [
'show_in_rest' => true,
'single' => true,
'type' => 'string',
]);
}
});