Skip to content

Instantly share code, notes, and snippets.

@ptesei
ptesei / template-example.php
Created March 12, 2021 11:02
Tribe Event Calendar pro load a v2 template / switch view example
use Tribe\Events\Pro\Views\V2\Views\Photo_View;
use Tribe\Events\Views\V2\Template;
$view = new Photo_View();
$template = new Template( $view );
$v2_event = tribe_get_event( $event );
$template->template( 'photo/event', [ 'event' => $v2_event ] );
@ptesei
ptesei / mosne_carousel.html
Created February 21, 2021 20:52
Mosne Accessible Carousel : CSS scroll-snap + IntersectionObserver
@ptesei
ptesei / searchwp-customizations.php
Created February 8, 2021 15:58
Search WP Add child PDF snippets to SearchWP result excerpt .
//Add child PDF snippets to SearchWP result excerpt .
add_filter(
'get_the_excerpt',
function ( $excerpt ) {
global $post;
if ( ! $post instanceof WP_Post || ! is_search() || post_password_required() || $post->searchwp_excerpt_found ) {
return $excerpt;
}