Remove Current Post Filter
Works within Layouts of Builder and Sidebar Recent Posts
// Remove current post in Post Module and Recent Post Widget on Single Post pages
add_filter( 'fl_builder_loop_query_args', 'sogwap_exclude_current_post' );
add_filter( 'widget_posts_args', 'sogwap_exclude_current_post' );
function sogwap_exclude_current_post( $args ) {
if( is_singular( 'post' ) ) {
$args['post__not_in'] = array( get_the_ID() );
}
return $args;
}