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
Hello @rue20!
Check the useful documentation here:
– https://forum.tagdiv.com/flex-block-settings-guide/
– https://forum.tagdiv.com/create-frontend-submission-form/
– https://forum.tagdiv.com/cloud-library-templates/
– https://forum.tagdiv.com/design-post-pages-using-cloud-library-templates/
– https://forum.tagdiv.com/cloud-library-category-templates/
– https://forum.tagdiv.com/introduction-cpt-acf-newspaper-theme/
– https://forum.tagdiv.com/custom-post-type-support/
Thank you!
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
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!