Skip to content

Instantly share code, notes, and snippets.

@AchalJ
Last active August 22, 2024 16:35
Show Gist options
  • Select an option

  • Save AchalJ/06ea293fdeb7affad2b5d54b6a4383c3 to your computer and use it in GitHub Desktop.

Select an option

Save AchalJ/06ea293fdeb7affad2b5d54b6a4383c3 to your computer and use it in GitHub Desktop.
PowerPack Advanced Accordion - Get items from ACF Repeater on the current taxonomy page
<?php // <-- ignore this line.
// If you've ACF repeater field setup for the taxonomy then
// Add this code to your current theme's functions.php file.
add_filter( 'pp_accordion_acf_post_id', function( $post_id, $settings ) {
if ( is_tax() ) {
$post_id = get_queried_object();
}
return $post_id;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment