'', 1 => 'read', 2 => 'separator' . $position, 3 => '', 4 => 'wp-menu-separator' ); } add_action('init_custom_menu_separator', 'add_launchpad_admin_menu_separator'); // ADD MENU SEPARATOR ABOVE OPTIONS PAGE function set_launchpad_admin_menu_separator() { do_action('init_custom_menu_separator', 57); } add_action('init', 'set_launchpad_admin_menu_separator'); // LAUNCHPAD SETTINGS function register_launchpad_settings() { register_setting('launchpad-settings', 'launchpad'); } // GET DIRECTORY SIZE function get_foldersize($path) { $total_size = 0; $files = scandir($path); $cleanPath = rtrim($path, '/') . '/'; foreach($files as $t) { if ('.' != $t && '..' != $t) { $currentFile = $cleanPath . $t; if (is_dir($currentFile)) { $size = get_foldersize($currentFile); $total_size += $size; } else { $size = filesize($currentFile); $total_size += $size; } } } return $total_size; } // FORMAT DIRECTORY SIZE function wp_formatsize($size) { $units = explode(' ', 'B KB MB GB TB PB'); $mod = 1024; for ($i = 0; $size > $mod; $i++) $size /= $mod; $endIndex = strpos($size, ".") + 3; return substr($size, 0, $endIndex) . ' ' . $units[$i]; } /*----------------------------------------------------------------------------------- LAUNCHPAD OPTIONS PAGE -------------------------------------------------------------------------------------*/ function launchpad_admin_page() { if (!current_user_can('manage_options')) { wp_die(__('You do not have sufficient permissions to access this page.')); } // FETCH SAVED OPTION VALUES $options = get_option('launchpad'); // FETCH DIRECTORY FOLDER SIZES $upload_dir = wp_upload_dir(); $theme_dir = get_theme_root(); $upload_space = get_foldersize($upload_dir['basedir']); $content_space = get_foldersize(WP_CONTENT_DIR); $theme_space = get_foldersize($theme_dir); $plugin_space = get_foldersize(WP_PLUGIN_DIR); $wp_space = get_foldersize(ABSPATH); $active_theme = get_template_directory(); $active_theme_space = get_foldersize($active_theme); // MATH FOR DIRECTORY FOLDER SIZE PERCENTAGES $total = $content_space; $uploads = $upload_space / $total * 100; $plugins = $plugin_space / $total * 100; $themes = $theme_space / $total * 100; $active = ($active_theme_space / 2048000) * 38.86; echo '
'; echo screen_icon().'

Launchpad

'; echo'
'; settings_fields('launchpad-settings'); do_settings_sections('launchpad-settings'); echo ''; echo ''; // THEME SIZE echo ''; echo ''; echo ''; echo ''; // OLYMPUS FORMAT echo ''; echo ''; echo ''; echo ''; // DETAILS FORMAT echo ''; echo ''; echo ''; echo ''; // OLYMPUS PAGE TITE echo ''; echo ''; echo ''; echo ''; // OLYMPUS COMPANY NAME echo ''; echo ''; echo ''; echo ''; // OLYMPUS OFFICE CODES echo ''; echo ''; echo ''; echo ''; // OLYMPUS AGENT CODES /* echo ''; echo ''; echo ''; echo ''; */ // OLYMPUS ASSOCIATION CODES echo ''; echo ''; echo ''; echo ''; // OLYMPUS CONTACT FORM 7 ID echo ''; echo ''; echo ''; echo ''; /* // FEATURES echo ''; echo ''; echo ''; echo ''; */ echo ''; echo '
Memory Usage:WP-Content: '.wp_formatsize($content_space); echo '
'; echo ''; echo ''; echo ''; echo '
'; echo '
    '; echo '
  • Plugins
  • '; echo '
  • Uploads
  • '; echo '
  • Themes
  • '; echo '
  • Misc
  • '; echo '
'; echo '
'; echo 'Theme Size: '.wp_formatsize($active_theme_space); echo '
'; echo ''; echo '
'; echo '
    '; echo '
  • Light
  • '; echo '
  • Average
  • '; echo '
  • Heavy
  • '; echo '
'; echo '
Results Page Format:'; echo ''; echo '
Details Page Format:'; echo ''; echo '
Olympus Page Title:
Olympus Company Name:
Olympus Office Codes:
Olympus Agent Codes:
Olympus Association Codes:
Olympus Contact Form 7 ID:
Features'; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '
'; echo'
'; submit_button(); echo '
'; echo '
'; } /*----------------------------------------------------------------------------------- FUNCTIONS FOR FEATURES -------------------------------------------------------------------------------------*/ /* // FETCH SAVED OPTION VALUES $options = get_option('launchpad'); */ /***************************************** * AGENTS POST TYPE *****************************************/ /* if($options["checkbox_agents"] == 1) { function post_type_agents() { $labels = array( 'name' => 'Agents', 'singular_name' => 'Agent', 'add_new' => 'Add New', 'add_new_item' => 'Add New Agent', 'edit_item' => 'Edit Agent', 'new_item' => 'New Agent', 'all_items' => 'All Agents', 'view_item' => 'View Agents', 'search_items' => 'Search Agents', 'not_found' => 'No Agents found', 'not_found_in_trash' => 'No Agents found in Trash', 'parent_item_colon' => '', 'menu_name' => 'Agents' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array('slug' => 'agent'), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => true, 'menu_position' => null, 'menu_icon' => 'dashicons-businessman', 'taxonomies' => array(''), 'supports' => array('title', 'editor', 'thumbnail') ); register_post_type('agent' , $args); } add_action('init', 'post_type_agents'); } */ /***************************************** * OFFICES POST TYPE *****************************************/ /* if($options["checkbox_offices"] == 1) { function post_type_offices() { $labels = array( 'name' => 'Offices', 'singular_name' => 'Office', 'add_new' => 'Add New', 'add_new_item' => 'Add New Office', 'edit_item' => 'Edit Office', 'new_item' => 'New Office', 'all_items' => 'All Offices', 'view_item' => 'View Offices', 'search_items' => 'Search Offices', 'not_found' => 'No Offices found', 'not_found_in_trash' => 'No Offices found in Trash', 'parent_item_colon' => '', 'menu_name' => 'Offices' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array('slug' => 'office'), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => true, 'menu_position' => null, 'menu_icon' => 'dashicons-admin-multisite', 'taxonomies' => array(''), 'supports' => array('title', 'editor', 'thumbnail') ); register_post_type('office' , $args); } add_action('init', 'post_type_offices'); } */ /***************************************** * FAVORITES POST TYPE *****************************************/ /* if($options["checkbox_favorites"] == 1) { function post_type_favorites() { $labels = array( 'name' => 'Favorites', 'singular_name' => 'Favorite', 'add_new' => 'Add New', 'add_new_item' => 'Add New Favorites', 'edit_item' => 'Edit Favorite', 'new_item' => 'New Favorite', 'all_items' => 'All Favorites', 'view_item' => 'View Favorites', 'search_items' => 'Search Favorites', 'not_found' => 'No Favorites found', 'not_found_in_trash' => 'No Favorites found in Trash', 'parent_item_colon' => '', 'menu_name' => 'Favorites' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array('slug' => 'favorite'), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => true, 'menu_position' => null, 'menu_icon' => 'dashicons-heart', 'taxonomies' => array(''), 'supports' => array('title', 'editor', 'thumbnail') ); register_post_type('favorite' , $args); } add_action('init', 'post_type_favorites'); } */ ?> {"id":23922,"date":"2021-10-11T15:31:05","date_gmt":"2021-10-11T15:31:05","guid":{"rendered":"https:\/\/www.sugsands.com\/?p=23922"},"modified":"2022-06-22T17:12:28","modified_gmt":"2022-06-22T17:12:28","slug":"why-fall-is-a-great-time-to-visit-gulf-shores-and-orange-beach","status":"publish","type":"post","link":"https:\/\/www.sugsands.com\/2021\/10\/11\/why-fall-is-a-great-time-to-visit-gulf-shores-and-orange-beach\/","title":{"rendered":"Why Fall is a Great Time to Visit Gulf Shores and Orange Beach"},"content":{"rendered":"

The Weather<\/b><\/p>\n

While the summer might seem like the best time to visit to the Alabama Gulf Coast, nothing can beat that crisp fall weather at the beach. With cooler temps, you\u2019re able to stay out longer and not enjoy the salty breeze coming off the gulf waters. <\/span><\/p>\n

Beaches are less crowded \u2013 meaning more time and more room for you to relax! <\/span><\/p>\n

The Shopping<\/b><\/p>\n

People from all over make their way down for to shop until they drop, and fall months are no exception. With all the locally owned boutiques to choose from, shops at <\/span>The Wharf<\/span><\/a> in Orange Beach, and Tanger Outlets in Foley, there is plenty to choose from. <\/span><\/p>\n

Trendy items and one-of-a-kind pieces are always available and no matter your interest you\u2019ll be sure to find something you love. <\/span><\/p>\n

The Food<\/b><\/p>\n

You can\u2019t make a trip without tasting a little bit of everything while you\u2019re here, right? Luckily, there\u2019s never a shortage of delicious options around here. <\/span><\/p>\n

If you\u2019ve always wanted to make a trip to <\/span>LuLu\u2019s<\/span><\/a>, but didn\u2019t want to wait that long for a table, you\u2019ll find restaurants in the fall bring smaller crowds and less wait time which is perfect for trying something new.<\/span><\/p>\n

Bring your family and check out fan favorites like the aforementioned LuLu\u2019s in Gulf Shores or The Hangout, located right on the beach. Both have great food and plenty of activities for the kids to enjoy. <\/span><\/p>\n

 <\/p>\n

The Gulf<\/span><\/a> is another ideal spot where you can enjoy unique cocktails and fresh seafood, all while basking in the sun at one of their many outdoor picnic tables. There\u2019s nothing like sipping on a blueberry mojito with a group of your closest friends.<\/span><\/p>\n

Looking for something classic but with twist? Look no further than <\/span>Bleus Burger<\/span><\/a> in Gulf Shores. Their selection of unique burgers is like nothing you\u2019ve ever tasted. Go for the blueberry burger, piled high with white cheddar cheese curds, bacon, blueberry compote, and baby arugula. Or you can\u2019t go wrong with their triple cheese burger \u2013 we think the name speaks for itself!<\/span><\/p>\n

Events & Things to Do<\/b><\/p>\n

Sometimes cooler weather brings more opportunities to enjoy the outdoors and we can\u2019t get enough of it! In October you\u2019ll find events like the <\/span>John L. Borom Alabama Coastal Birdfest<\/span><\/a>, where nature lovers from all over can come and watch out for their favorite species found on the Alabama Gulf Coast. <\/span><\/p>\n

Or we have multiple Oktoberfest events that take place where you come in costume, visit with the local vendors, and enjoy some traditional German food and beer. <\/span><\/p>\n

If you\u2019re looking for something a little more relaxing, taking a stroll through <\/span>Gulf State Park<\/span><\/a> is the perfect way to spend a day getting back to nature. With over 20 miles of paved trail and the option to bike, walk or even kayak, you\u2019ll never find yourself with nothing to do. <\/span><\/p>\n

Don\u2019t just take our word for it. Book your next vacation rental to stay in Gulf Shores & Orange Beach AL<\/a> with us today and see for yourself!<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"

The Weather While the summer might seem like the best time to visit to the Alabama Gulf Coast, nothing can beat that crisp fall weather at the beach. With cooler temps, you\u2019re able to stay out longer and not enjoy the salty breeze coming off the gulf waters.  Beaches are less crowded \u2013 meaning more […]<\/p>\n","protected":false},"author":22,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[100],"tags":[95,93,49,153,54,56,65],"class_list":["post-23922","post","type-post","status-publish","format-standard","hentry","category-good-times","tag-alabama-beaches","tag-beach-vacation","tag-condo-rentals","tag-fall-activities","tag-gulf-shores","tag-orange-beach","tag-orange-beach-rentals"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/23922","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/comments?post=23922"}],"version-history":[{"count":0,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/posts\/23922\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/media?parent=23922"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/categories?post=23922"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sugsands.com\/wp-json\/wp\/v2\/tags?post=23922"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}