Filter products by custom product attribute et post meta data in a WP_Query












3















I have already filtered by category, but don't know how to filter products by custom attributes or meta values



code:



$key="naam"; //custom attribute name
$value="test";// custom value
$query_custom = array('key' => $key, 'value' => $value);
$meta_query = $query_custom ;

$args=array('meta_query'=>$meta_query, 'product_cat' => 'activiteiten','posts_per_page' => 10,'post_type' => 'product');



$loop = new WP_Query( $args );


`



See image for custom attributes










share|improve this question





























    3















    I have already filtered by category, but don't know how to filter products by custom attributes or meta values



    code:



    $key="naam"; //custom attribute name
    $value="test";// custom value
    $query_custom = array('key' => $key, 'value' => $value);
    $meta_query = $query_custom ;

    $args=array('meta_query'=>$meta_query, 'product_cat' => 'activiteiten','posts_per_page' => 10,'post_type' => 'product');



    $loop = new WP_Query( $args );


    `



    See image for custom attributes










    share|improve this question



























      3












      3








      3








      I have already filtered by category, but don't know how to filter products by custom attributes or meta values



      code:



      $key="naam"; //custom attribute name
      $value="test";// custom value
      $query_custom = array('key' => $key, 'value' => $value);
      $meta_query = $query_custom ;

      $args=array('meta_query'=>$meta_query, 'product_cat' => 'activiteiten','posts_per_page' => 10,'post_type' => 'product');



      $loop = new WP_Query( $args );


      `



      See image for custom attributes










      share|improve this question
















      I have already filtered by category, but don't know how to filter products by custom attributes or meta values



      code:



      $key="naam"; //custom attribute name
      $value="test";// custom value
      $query_custom = array('key' => $key, 'value' => $value);
      $meta_query = $query_custom ;

      $args=array('meta_query'=>$meta_query, 'product_cat' => 'activiteiten','posts_per_page' => 10,'post_type' => 'product');



      $loop = new WP_Query( $args );


      `



      See image for custom attributes







      php wordpress loops woocommerce product






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 2 at 12:41









      LoicTheAztec

      94.2k1367107




      94.2k1367107










      asked Jan 2 at 10:48









      td devtd dev

      163




      163
























          2 Answers
          2






          active

          oldest

          votes


















          1














          You can achieve using following code.



                      $args = array(
          'meta_query'=> array(
          array(
          'key' => 'vote', // here use your field name
          'compare' => '=', // comparison sign
          'value' => 5, // value using that you can search

          )
          ),
          'product_cat' => 'activiteiten',
          'posts_per_page' => 10,
          'post_type' => 'product'
          ) );

          query_posts( $args ); // get all the posts data using above filter.


          query_posts is used to find out the posts with list of arguments meta_query is used in your case to find the matched custom field data.






          share|improve this answer


























          • Code only answers arent encouraged as they dont provide much information for future readers please provide some explanation to what you have written

            – WhatsThePoint
            Jan 2 at 11:40











          • thanks for answer! but it does not work

            – td dev
            Jan 2 at 11:40



















          1














          Here is a working example of a query involving:




          • product category filtering

          • post meta value filtering (meta query)

          • product attribute value filtering (tax query)


          The code:



          $products = new WP_Query( array(
          'posts_per_page' => 10,
          'post_type' => 'product',
          'post_status' => 'publish',

          // 1. Product category filter
          'product_cat' => 'clothing',

          // 2. The Post meta query part (filtering by post meta value)
          'meta_query' => array( array(
          'key' => '_price',
          'value' => 5,
          'type' => 'numeric',
          'compare' => '>',
          ), ),

          // 3. The taxonomy meta query part (filtering by term values)
          'tax_query' => array( array(
          'taxonomy' => 'pa_color', // Product attribute taxonomy: always start with 'pa_'
          'field' => 'slug', // Can be 'term_id', 'slug' or 'name'
          'terms' => array('blue'),
          ), ),
          ) );

          // Testing output
          if( $products->have_posts() ) :
          echo '<ul>'
          while ( $products->have_posts() ) : $products->the_post();
          echo '<li class="post-id-' . get_the_id() . '">' . get_the_title() . '</li>';
          endwhile;
          wp_reset_postdata();
          echo '</ul>'
          endif;


          Tested and working:



          Official reference documentation for Wordpress WP_Query:





          • WP_Query and Custom fields parameters


          • WP_Query and Taxonomy parameters






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54004962%2ffilter-products-by-custom-product-attribute-et-post-meta-data-in-a-wp-query%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            You can achieve using following code.



                        $args = array(
            'meta_query'=> array(
            array(
            'key' => 'vote', // here use your field name
            'compare' => '=', // comparison sign
            'value' => 5, // value using that you can search

            )
            ),
            'product_cat' => 'activiteiten',
            'posts_per_page' => 10,
            'post_type' => 'product'
            ) );

            query_posts( $args ); // get all the posts data using above filter.


            query_posts is used to find out the posts with list of arguments meta_query is used in your case to find the matched custom field data.






            share|improve this answer


























            • Code only answers arent encouraged as they dont provide much information for future readers please provide some explanation to what you have written

              – WhatsThePoint
              Jan 2 at 11:40











            • thanks for answer! but it does not work

              – td dev
              Jan 2 at 11:40
















            1














            You can achieve using following code.



                        $args = array(
            'meta_query'=> array(
            array(
            'key' => 'vote', // here use your field name
            'compare' => '=', // comparison sign
            'value' => 5, // value using that you can search

            )
            ),
            'product_cat' => 'activiteiten',
            'posts_per_page' => 10,
            'post_type' => 'product'
            ) );

            query_posts( $args ); // get all the posts data using above filter.


            query_posts is used to find out the posts with list of arguments meta_query is used in your case to find the matched custom field data.






            share|improve this answer


























            • Code only answers arent encouraged as they dont provide much information for future readers please provide some explanation to what you have written

              – WhatsThePoint
              Jan 2 at 11:40











            • thanks for answer! but it does not work

              – td dev
              Jan 2 at 11:40














            1












            1








            1







            You can achieve using following code.



                        $args = array(
            'meta_query'=> array(
            array(
            'key' => 'vote', // here use your field name
            'compare' => '=', // comparison sign
            'value' => 5, // value using that you can search

            )
            ),
            'product_cat' => 'activiteiten',
            'posts_per_page' => 10,
            'post_type' => 'product'
            ) );

            query_posts( $args ); // get all the posts data using above filter.


            query_posts is used to find out the posts with list of arguments meta_query is used in your case to find the matched custom field data.






            share|improve this answer















            You can achieve using following code.



                        $args = array(
            'meta_query'=> array(
            array(
            'key' => 'vote', // here use your field name
            'compare' => '=', // comparison sign
            'value' => 5, // value using that you can search

            )
            ),
            'product_cat' => 'activiteiten',
            'posts_per_page' => 10,
            'post_type' => 'product'
            ) );

            query_posts( $args ); // get all the posts data using above filter.


            query_posts is used to find out the posts with list of arguments meta_query is used in your case to find the matched custom field data.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 2 at 11:45

























            answered Jan 2 at 10:58









            dipmaladipmala

            1,64411217




            1,64411217













            • Code only answers arent encouraged as they dont provide much information for future readers please provide some explanation to what you have written

              – WhatsThePoint
              Jan 2 at 11:40











            • thanks for answer! but it does not work

              – td dev
              Jan 2 at 11:40



















            • Code only answers arent encouraged as they dont provide much information for future readers please provide some explanation to what you have written

              – WhatsThePoint
              Jan 2 at 11:40











            • thanks for answer! but it does not work

              – td dev
              Jan 2 at 11:40

















            Code only answers arent encouraged as they dont provide much information for future readers please provide some explanation to what you have written

            – WhatsThePoint
            Jan 2 at 11:40





            Code only answers arent encouraged as they dont provide much information for future readers please provide some explanation to what you have written

            – WhatsThePoint
            Jan 2 at 11:40













            thanks for answer! but it does not work

            – td dev
            Jan 2 at 11:40





            thanks for answer! but it does not work

            – td dev
            Jan 2 at 11:40













            1














            Here is a working example of a query involving:




            • product category filtering

            • post meta value filtering (meta query)

            • product attribute value filtering (tax query)


            The code:



            $products = new WP_Query( array(
            'posts_per_page' => 10,
            'post_type' => 'product',
            'post_status' => 'publish',

            // 1. Product category filter
            'product_cat' => 'clothing',

            // 2. The Post meta query part (filtering by post meta value)
            'meta_query' => array( array(
            'key' => '_price',
            'value' => 5,
            'type' => 'numeric',
            'compare' => '>',
            ), ),

            // 3. The taxonomy meta query part (filtering by term values)
            'tax_query' => array( array(
            'taxonomy' => 'pa_color', // Product attribute taxonomy: always start with 'pa_'
            'field' => 'slug', // Can be 'term_id', 'slug' or 'name'
            'terms' => array('blue'),
            ), ),
            ) );

            // Testing output
            if( $products->have_posts() ) :
            echo '<ul>'
            while ( $products->have_posts() ) : $products->the_post();
            echo '<li class="post-id-' . get_the_id() . '">' . get_the_title() . '</li>';
            endwhile;
            wp_reset_postdata();
            echo '</ul>'
            endif;


            Tested and working:



            Official reference documentation for Wordpress WP_Query:





            • WP_Query and Custom fields parameters


            • WP_Query and Taxonomy parameters






            share|improve this answer




























              1














              Here is a working example of a query involving:




              • product category filtering

              • post meta value filtering (meta query)

              • product attribute value filtering (tax query)


              The code:



              $products = new WP_Query( array(
              'posts_per_page' => 10,
              'post_type' => 'product',
              'post_status' => 'publish',

              // 1. Product category filter
              'product_cat' => 'clothing',

              // 2. The Post meta query part (filtering by post meta value)
              'meta_query' => array( array(
              'key' => '_price',
              'value' => 5,
              'type' => 'numeric',
              'compare' => '>',
              ), ),

              // 3. The taxonomy meta query part (filtering by term values)
              'tax_query' => array( array(
              'taxonomy' => 'pa_color', // Product attribute taxonomy: always start with 'pa_'
              'field' => 'slug', // Can be 'term_id', 'slug' or 'name'
              'terms' => array('blue'),
              ), ),
              ) );

              // Testing output
              if( $products->have_posts() ) :
              echo '<ul>'
              while ( $products->have_posts() ) : $products->the_post();
              echo '<li class="post-id-' . get_the_id() . '">' . get_the_title() . '</li>';
              endwhile;
              wp_reset_postdata();
              echo '</ul>'
              endif;


              Tested and working:



              Official reference documentation for Wordpress WP_Query:





              • WP_Query and Custom fields parameters


              • WP_Query and Taxonomy parameters






              share|improve this answer


























                1












                1








                1







                Here is a working example of a query involving:




                • product category filtering

                • post meta value filtering (meta query)

                • product attribute value filtering (tax query)


                The code:



                $products = new WP_Query( array(
                'posts_per_page' => 10,
                'post_type' => 'product',
                'post_status' => 'publish',

                // 1. Product category filter
                'product_cat' => 'clothing',

                // 2. The Post meta query part (filtering by post meta value)
                'meta_query' => array( array(
                'key' => '_price',
                'value' => 5,
                'type' => 'numeric',
                'compare' => '>',
                ), ),

                // 3. The taxonomy meta query part (filtering by term values)
                'tax_query' => array( array(
                'taxonomy' => 'pa_color', // Product attribute taxonomy: always start with 'pa_'
                'field' => 'slug', // Can be 'term_id', 'slug' or 'name'
                'terms' => array('blue'),
                ), ),
                ) );

                // Testing output
                if( $products->have_posts() ) :
                echo '<ul>'
                while ( $products->have_posts() ) : $products->the_post();
                echo '<li class="post-id-' . get_the_id() . '">' . get_the_title() . '</li>';
                endwhile;
                wp_reset_postdata();
                echo '</ul>'
                endif;


                Tested and working:



                Official reference documentation for Wordpress WP_Query:





                • WP_Query and Custom fields parameters


                • WP_Query and Taxonomy parameters






                share|improve this answer













                Here is a working example of a query involving:




                • product category filtering

                • post meta value filtering (meta query)

                • product attribute value filtering (tax query)


                The code:



                $products = new WP_Query( array(
                'posts_per_page' => 10,
                'post_type' => 'product',
                'post_status' => 'publish',

                // 1. Product category filter
                'product_cat' => 'clothing',

                // 2. The Post meta query part (filtering by post meta value)
                'meta_query' => array( array(
                'key' => '_price',
                'value' => 5,
                'type' => 'numeric',
                'compare' => '>',
                ), ),

                // 3. The taxonomy meta query part (filtering by term values)
                'tax_query' => array( array(
                'taxonomy' => 'pa_color', // Product attribute taxonomy: always start with 'pa_'
                'field' => 'slug', // Can be 'term_id', 'slug' or 'name'
                'terms' => array('blue'),
                ), ),
                ) );

                // Testing output
                if( $products->have_posts() ) :
                echo '<ul>'
                while ( $products->have_posts() ) : $products->the_post();
                echo '<li class="post-id-' . get_the_id() . '">' . get_the_title() . '</li>';
                endwhile;
                wp_reset_postdata();
                echo '</ul>'
                endif;


                Tested and working:



                Official reference documentation for Wordpress WP_Query:





                • WP_Query and Custom fields parameters


                • WP_Query and Taxonomy parameters







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 2 at 12:41









                LoicTheAztecLoicTheAztec

                94.2k1367107




                94.2k1367107






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54004962%2ffilter-products-by-custom-product-attribute-et-post-meta-data-in-a-wp-query%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    MongoDB - Not Authorized To Execute Command

                    How to fix TextFormField cause rebuild widget in Flutter

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith