Skip to content

Instantly share code, notes, and snippets.

View himeylo's full-sized avatar

Jamie McKinnerney himeylo

View GitHub Profile
@himeylo
himeylo / full-width-container-inside-limited-with-parent.css
Last active June 18, 2021 18:10
Full-width containers inside Limited-width containers
.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
@himeylo
himeylo / past-event.php
Last active April 11, 2020 03:50
Past 'category' events section
<?php
function lll_past_events_section( $category_slug ) {
$past_events = tribe_get_events( [
'eventDisplay' => 'custom',
'posts_per_page' => -1,
'end_date' => 'now',
'tax_query' => [ [
'taxonomy' => 'tribe_events_cat',