Many times, you would want to display all the posts using an Advanced Post module. But, at the same time you might want to exclude a post which is current. You can do this using the Advanced Post Module action with the Ultimate Addons for Beaver Builder.
You can paste the following code in the functions.php file of your theme / child theme to exclude the current post from rendering.
// Helps one exclude current post form the loop.function uabb_advance_post_custom_args( $args ) { // Do any operation with the $args. $args['post__not_in'] = array( get_the_ID() ); return $args; } add_filter( 'uabb_blog_posts_query_args', 'uabb_advance_post_custom_args', 10, 1 );