Get posts by current user in Bricksbuilder posts element

CoderAuthor Position

This is a static text. Maybe you want to add a tagline or short message here?

In posts element enable “Query editor (PHP)” and add needed parameters:

 

return [
'post_type' => 'event',
'posts_per_page' => 10,
'author' => get_current_user_id(),
'orderby' => 'ID',
];