This Week: Cruising-Friendly Parties & Events

Explore cruising-friendly gay parties, fetish nights, sex-positive events, and nightlife happening this week around the world. Filter by city and venue as we continue expanding listings.

[lnc_events_list]

/**
* LNC – Baseline Events Shortcode (No Filters)
* Shortcode: [lnc_events_list]
*/

function lnc_events_list_shortcode_safe() {

$args = array(
‘post_type’ => ‘lnc_events’,
‘post_status’ => ‘publish’,
‘posts_per_page’ => 5,
);

$events = new WP_Query( $args );

if ( ! $events->have_posts() ) {
return ‘

LNC: No events found.

‘;
}

$output = ‘

‘;

while ( $events->have_posts() ) {
$events->the_post();

$output .= ‘

‘;
$output .= ‘

‘ . esc_html( get_the_title() ) . ‘

‘;
$output .= ‘

‘;
}

wp_reset_postdata();

$output .= ‘

‘;

return $output;
}

add_shortcode( ‘lnc_events_list’, ‘lnc_events_list_shortcode_safe’ );