• Resolved lagunas

    (@lagunas)


    Hi!
    I have 2 custom post types that are bi-directionally related.

    I’m using this code to display related posts:

    $art = pods('art', get_the_id());
    
    $docs_rel = $art->field('doc_rel');
    
    	if ( ! empty( $docs_rel ) ) {
    
    		foreach ( $docs_rel as $doc_rel ) {
    		...
    		}
             }

    This is working fine, but if I change the posts order from the admin panel, it doesn’t change.
    I would like to display the related custom posts in the same order they appear in the admin (menu_order).
    Is it possible?

    Thanks a lot!

    https://wordpress.org/plugins/pods/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter lagunas

    (@lagunas)

    Kept trying, and changed my code to:

    $art = pods('art', get_the_id());
    
    $params = array('name' => 'a_doc_rel');
    $docs_rel = $art->field($params);
    
    	if ( ! empty( $docs_rel ) ) {
    
    		foreach ( $docs_rel as $doc_rel ) {
    		...
    		}
             }

    This works just like the code I was using before. But if I add 'orderby' => 'menu_order ASC' like this:

    $art = pods('art', get_the_id());
    
    $params = array('name' => 'a_doc_rel', 'orderby' => 'menu_order ASC');
    $docs_rel = $art->field($params);
    
    	if ( ! empty( $docs_rel ) ) {
    
    		foreach ( $docs_rel as $doc_rel ) {
    		...
    		}
             }

    then the related fields are not displayed at all.

    Plugin Contributor Josh Pollock

    (@shelob9)

    Unfortunately ordering relationship fields by passing orderby parameters to field doesn’t work. It’s a known issue that we don’t know the cause of. The workaround is to do 2 loops. In the first, build an array of the info you need to output of reach item, where the key is the field to sort by. Then sort the array by key, using key_sort() and then loop the sorted array.

    Thread Starter lagunas

    (@lagunas)

    Thanks for your answer!
    Could you provide an example of the workaround you propose?
    I’m not very good at programming, but with an example I may be able to adapt it to what I need.
    Thank you!

    Plugin Contributor Josh Pollock

    (@shelob9)

    Thread Starter lagunas

    (@lagunas)

    hi there!

    I coudn’t find how to adapt the code on the link you provided to what I needed.

    But I found the answer here:
    http://pods.io/forums/topic/sort-relationship-field-according-to-menu_order/

    and here’s my code, in case somebody finds it useful:

    $art = pods('art', get_the_id());
    
    $docs_rel = $art->field('doc_rel');
    
    	if ( ! empty( $docs_rel ) ) {
    
      $docs_rel_menu_order = $art->field('doc_rel.menu_order');
    
      array_multisort($docs_rel_menu_order, $docs_rel);
    
    		foreach ( $docs_rel as $doc_rel ) {
    		...
    		}
             }

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Display related cpts ordered by menu order’ is closed to new replies.