Support Forum ยป User Profile

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Can't find MB Builder Taxonomy saved #4617
    PipoPipo
    Participant

    Alright, I get it after I've read this: https://metabox.io/docs/how-post-meta-is-saved-in-the-database/.

    So the issue is just that it seems the taxonomy_advanced input is not working when added with the MB Builder plugin (it saves the value as the post's term and not in the database as specified).

    in reply to: Can't find MB Builder Taxonomy saved #4616
    PipoPipo
    Participant

    Thanks for your answer!

    I'm trying to understand but I dont get it: why is the taxonomy select value not stored in postmeta with a combination of meta_key and meta_value (as is the post select value)? rwmb_meta('field_id') is not

    Here is my problem, let's say I want to get all the custom post type with a post select value of 5 and a taxonomy select value of 6. Now, what I would normally do is this:

    $args = array(
      'numberposts' => -1,
      'post_type' => 'myposttype',
      'meta_query' => array(
        'relation' => 'AND',
        array(
          'key' => 'is_posttype_id', // my post select value ID
          'value' => 5
        ), // this first part above works fine
        array(
          'key' => 'is_taxonomy_id', // my taxonomy select value ID
          'value' => 6
        )
      )
    );
    $results = get_posts( $args );

    However, as the taxonomy select value is not stored as a post meta I can't do that. So could you show me the best way to integrate the taxonomy select value in my get_posts arguments?

    in reply to: Display Meta Box only on some pages #4615
    PipoPipo
    Participant

    Sorry, I haven't replied!! I've installed the Include Exclude plugin and everything works fine. Thanks!

    in reply to: Can't find MB Builder Taxonomy saved #4605
    PipoPipo
    Participant

    Just to specify a little bit, I'd like to be able to use the value in a get_posts (meta_query). I've searched for the value in phpMyAdmin but couldn't find it.

Viewing 4 posts - 1 through 4 (of 4 total)