Created
October 16, 2024 21:31
-
-
Save waynep16/0596f746d7bef75b5f9d7baf30472b12 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add this function to your theme's functions.php or a custom plugin file | |
// To use the shortcode you should call [check_open_status location_id="123"] | |
//Replace '123' with your location ID (edit a location and you will find this in the url) | |
function check_if_location_open( $atts ) { | |
// Extract shortcode attributes | |
$atts = shortcode_atts( | |
array( | |
'location_id' => '', // Default is empty, you need to provide location_id | |
), | |
$atts, | |
'check_open_status' | |
); | |
// Check if location ID is provided | |
if ( empty( $atts['location_id'] ) ) { | |
return '<span class="badge danger">Invalid Location ID</span>'; | |
} | |
$location_id = intval( $atts['location_id'] ); | |
// Instantiate the Orderable_Location_Single_Pro class | |
if ( class_exists( 'Orderable_Location_Single_Pro' ) ) { | |
$location = new Orderable_Location_Single_Pro( $location_id ); | |
// Use the get_status method to determine if the location is open or closed | |
$status = $location->get_status(); | |
$status_class = strtolower( $status ) === 'open' ? 'success' : 'danger'; | |
$status_text = strtolower( $status ) === 'open' ? 'Open' : 'Closed'; | |
// Return the status wrapped in a span with the appropriate classes | |
return 'Currently <span class="badge ' . esc_attr( $status_class ) . '">' . esc_html( $status_text ) . '</span>'; | |
} | |
return '<span class="badge danger">Unable to check status</span>'; | |
} | |
// Register the shortcode | |
add_shortcode( 'check_open_status', 'check_if_location_open' ); | |
// To use the shortcode you should call [check_open_status location_id="123"] | |
//Replace '123' with your location ID (edit a location and you will find this in the url) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment