Okay
  Public Ticket #1602040
sort portfolio items by date
Closed

Comments

  • Wolf started the conversation

    Hi,

    I want to sort my portfolio items by date (https://nebe.design). I changed the code in functions.php as it is described here: https://themenectar.ticksy.com//ticket/1258728/ But it does not work. Did I make anything wrong?

    Best regrads
    Wolf

  •  3,034
    Andrew replied

    Hey there,

    Thanks for reaching in,

    Please try this in your functions.php

    add_filter( 'pre_get_posts', 'flagship_customization_change_order' );
    function flagship_customization_change_order( $q ) {
    	$q->set( 'orderby', 'date' );
    	$q->set( 'order', 'ASC' );
    }

    Hope this helps,

    Regards

  • Wolf replied

    Hi Andrew,

    the solution is more simple:

    // 'orderby'      => 'menu_order title',
    'orderby'         => 'date',
    // 'order'       => 'ASC',
    'order'          => 'DSC',

    Best regrads
    Wolf

  •  3,034
    Andrew replied

    Hey there,

    Thanks for reaching in,

    Awesome. Please be sure to reach in in case you encounter another issue,

    Regards