Metabox filtres in posts from flexbox

Posted in: Newspaper
Post count: 3

i have post type saved and im add relation between normal posts and this post type with meta i want in the post Type page get posts with relation to this post type.
Exemple: i have team as post type in normal post user can select many teams as relation to this post, in Team post i want to get normal posts attached in this team.

Thanks

Post count: 21065
Post count: 3

im already read all of this from documentation, for more information in our plugin shortcode we do Wp_query to get posts like that:
$args = array(
‘post_type’ => ‘post’,
‘meta_query’ => array(
array(
‘key’ => ‘_selected_teams’,
‘value’ => ‘”‘ . $current_team_id . ‘”‘,
‘compare’ => ‘LIKE’,
)
)
);
$query = new WP_Query($args);

can i make something to get posts in flexbox ? or i want tips to create my own bloc with your specifications to get this posts

Thank you

Post count: 21065

Hello @rue20!

For customization and other services, you can contact our custom work team here: https://tagdiv.com/premium-customization-services/.

Thank you so much for your understanding!

Post count: 3

i want only using specification of your design to our widget can you have documentation for that ?

Post count: 21065

Hello @rue20!

Please search the forum, and you’ll find our available links to the documentation.

Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.