Skip to content

Instantly share code, notes, and snippets.

@ledovej
Created February 20, 2020 10:55
Show Gist options
  • Save ledovej/65835b6097a9637a824dbfc08a79a058 to your computer and use it in GitHub Desktop.
Save ledovej/65835b6097a9637a824dbfc08a79a058 to your computer and use it in GitHub Desktop.
add_action( 'elementor_pro/posts/query/relational-posts', function ( $query ) { $postid = get_the_ID(); $ids = get_post_meta($postid, 'related_featured', true); if ( $ids ) { $query->set( 'post__in', $ids ); } } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment