Query get post type with meta_key and order by other meta_key











up vote
0
down vote

favorite












I have this query to read out my custom post type dealers.



<?php
return array(
'post_type' => 'deckmatedealers',
'post_status' => 'publish',
'posts_per_page' => 999,
'meta_key' => 'land',
'orderby' => 'meta_value',
'order' => 'ASC'
);


He picks up all dealers with customfield "country" and shows them sorted at the time of adding. I want them to be sorted on my customfield "province". The dealers come from different countries and only the Netherlands has provinces. I want the query to be sorted based on provinces. If I change my query to the following:



<?php
return array(
'post_type' => 'deckmatedealers',
'post_status' => 'publish',
'posts_per_page' => 999,
'meta_key' => 'provincie',
'orderby' => 'meta_value',
'order' => 'ASC'
);


Then the results are sorted by province, but he does not show all other countries that do not have a province.



How can I create a query that picks up the dealers from all countries and the dealers who have a customfield province sort the dealers by province? In this case only dealers with country Netherlands have provinces.










share|improve this question


























    up vote
    0
    down vote

    favorite












    I have this query to read out my custom post type dealers.



    <?php
    return array(
    'post_type' => 'deckmatedealers',
    'post_status' => 'publish',
    'posts_per_page' => 999,
    'meta_key' => 'land',
    'orderby' => 'meta_value',
    'order' => 'ASC'
    );


    He picks up all dealers with customfield "country" and shows them sorted at the time of adding. I want them to be sorted on my customfield "province". The dealers come from different countries and only the Netherlands has provinces. I want the query to be sorted based on provinces. If I change my query to the following:



    <?php
    return array(
    'post_type' => 'deckmatedealers',
    'post_status' => 'publish',
    'posts_per_page' => 999,
    'meta_key' => 'provincie',
    'orderby' => 'meta_value',
    'order' => 'ASC'
    );


    Then the results are sorted by province, but he does not show all other countries that do not have a province.



    How can I create a query that picks up the dealers from all countries and the dealers who have a customfield province sort the dealers by province? In this case only dealers with country Netherlands have provinces.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have this query to read out my custom post type dealers.



      <?php
      return array(
      'post_type' => 'deckmatedealers',
      'post_status' => 'publish',
      'posts_per_page' => 999,
      'meta_key' => 'land',
      'orderby' => 'meta_value',
      'order' => 'ASC'
      );


      He picks up all dealers with customfield "country" and shows them sorted at the time of adding. I want them to be sorted on my customfield "province". The dealers come from different countries and only the Netherlands has provinces. I want the query to be sorted based on provinces. If I change my query to the following:



      <?php
      return array(
      'post_type' => 'deckmatedealers',
      'post_status' => 'publish',
      'posts_per_page' => 999,
      'meta_key' => 'provincie',
      'orderby' => 'meta_value',
      'order' => 'ASC'
      );


      Then the results are sorted by province, but he does not show all other countries that do not have a province.



      How can I create a query that picks up the dealers from all countries and the dealers who have a customfield province sort the dealers by province? In this case only dealers with country Netherlands have provinces.










      share|improve this question













      I have this query to read out my custom post type dealers.



      <?php
      return array(
      'post_type' => 'deckmatedealers',
      'post_status' => 'publish',
      'posts_per_page' => 999,
      'meta_key' => 'land',
      'orderby' => 'meta_value',
      'order' => 'ASC'
      );


      He picks up all dealers with customfield "country" and shows them sorted at the time of adding. I want them to be sorted on my customfield "province". The dealers come from different countries and only the Netherlands has provinces. I want the query to be sorted based on provinces. If I change my query to the following:



      <?php
      return array(
      'post_type' => 'deckmatedealers',
      'post_status' => 'publish',
      'posts_per_page' => 999,
      'meta_key' => 'provincie',
      'orderby' => 'meta_value',
      'order' => 'ASC'
      );


      Then the results are sorted by province, but he does not show all other countries that do not have a province.



      How can I create a query that picks up the dealers from all countries and the dealers who have a customfield province sort the dealers by province? In this case only dealers with country Netherlands have provinces.







      php sorting arguments custom-post-type custom-fields






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 9 at 13:25









      user2812779

      5710




      5710





























          active

          oldest

          votes











          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',
          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%2f53226566%2fquery-get-post-type-with-meta-key-and-order-by-other-meta-key%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53226566%2fquery-get-post-type-with-meta-key-and-order-by-other-meta-key%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

          Schultheiß

          Android Play Services Check

          Where to put API Key in Google Cloud Vision for PHP