Skip to content

Instantly share code, notes, and snippets.

@MjHead
Created June 14, 2024 09:57
Show Gist options
  • Save MjHead/7b58ca06b8e51a1295dba6b807be9e59 to your computer and use it in GitHub Desktop.
Save MjHead/7b58ca06b8e51a1295dba6b807be9e59 to your computer and use it in GitHub Desktop.
JetEngine. Timber/Twig listings. Set Post context for WC Product Query
<?php
add_filter( 'jet-engine/twig-views/current-context', function( $context, $object ) {
if ( is_a( $object, 'WC_Product' ) ) {
$object_factory = new \Jet_Engine\Timber_Views\Object_Factory();
$context['post'] = $object_factory->get_post( get_post( $object->get_id() ) );
}
return $context;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment