Skip Navigation

[Résolu] PHP Example to User Parent Field as Parametric Search Filter

This support ticket is created Il y a 6 années et 9 mois. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 - -
13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 - -

Supporter timezone: America/New_York (GMT-04:00)

This topic contains 3 réponses, has 2 voix.

Last updated by Christian Cox Il y a 6 années et 9 mois.

Assisted by: Christian Cox.

Auteur
Publications
#543798

Until Maps allows for a radius search option, I need to use GeoMyWP to create a custom search form that includes some custom fields & the radius search option. That means that I need to customize/hack the php search form template of that plugin. I’m hoping you can help with something that’s easy in Views but I’m not sure how to do with php code.

How can I use a parent post’s field as a search filter with php code? The search results will display the child posts in the loop.

With Views I’ve seen that this can be done with nested views. Is that sort of thing possible with PHP code. If so, do you have an example code you could share?

Thanks,

Marcus

#543997

Here's how I would approach this:
1. Query all parent posts that have the matching field, resulting in a subset of parent post IDs. Assuming 'brand' is the parent post type slug and 'blue' is the value you're searching for:

add_filter( 'wpv_filter_query', 'toolset_parent_meta_filter', 10, 3 );
function toolset_parent_meta_filter( $query_args, $view_settings, $view_ID ) {
  $args = array(
  'meta_key' => 'wpcf-fieldslug',
  'meta_value' => 1234,
  'meta_compare' => 'numeric',
  'post_type'  => 'brand'
);
$query1 = new WP_Query( $args );
$parents = wp_list_pluck( $query1->posts, 'ID' );

Change "fieldslug" and 1234 to match your slug and value, change 789 to match your View ID. This example uses a numeric comparison. More info about this and examples here:
https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters
https://codex.wordpress.org/Class_Reference/WP_Meta_Query

2. Query all child posts that have a parent that matches one of these parent post ids. If the parent / child relationship is created in Types, then you can determine the parent post ID using the "_wpcf_belongs_parentslug_id" postmeta key. For instance, let's say you have a parent post type "brand" and a chid post type "car". Each car post that has a parent brand will include an entry in the postmeta table "_wpcf_belongs_brand_id".

$args2 = array(
       'post_type'  => 'car',
       'meta_query' => array(
            array(
    'key'     => '_wpcf_belongs_brand_id',
    'value'   => $parents,
    'compare' => 'IN',
                'type' => 'numeric'
      )
       )
);
$query2 = new WP_Query( $args2 );
$cars = wp_list_pluck( $query2->posts, 'ID' );

Now $query2 is a result set of all the matching child posts, and $cars is an array of their IDs.

#544015

Christian,

Thank you for this example -- this is great. My post type is not created by Types. I’m targeting WooCommerce product variations, which according to this post are children of the post type, Product. hidden link

It’s seems that I should be able to target the post_parent ID from the post table.

How would you modify your code to target the parent since I can’t use the _wpcf_belongs_brand_id as the key?

#544028

Hmmm, I can help with code directly related to Toolset, but this doesn't appear to be related to Toolset at all anymore. Product relationships in WooCommerce can be queried according to their API and formats, and I'm not really qualified to help with that. A quick search led me to some examples:
https://www.gavick.com/blog/wp_query-woocommerce-products
https://stackoverflow.com/questions/41845957/how-to-get-product-variations-only-if-the-parent-product-is-published

If you need help integrating with a Toolset API, then do reach out here and I can give more assistance. Thanks!

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.