Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1470778

    Hello,

    I have 2 questions:

    1) How can I control the order of Blog Posts?

    2) Is there a way to have regular page stuff on top of a blog page? For example, the page on my site called “My Take”…. I would like that to be on top of the page, and the blog underneath it. When I tried that, the blog was just the whole page. Is this sort of thing allowed?

    Thanks for your help!

    #1470806

    Hey MysticMimi,

    Thank you for the inquiry.

    1.) There is no option for this by default, but you can try this code in the functions.php fil:

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
    
    function avia_post_slide_query_mod($query)
    {
        $query['orderby'] = 'date';
        $query['order'] = 'DESC';
    
        return $query;
    }
    

    2.) We discussed this here: https://kriesi.at/support/topic/trying-to-build-blog-with-grid-layout/#post-1470721

    Best regards,
    Ismael

    #1470850

    Thank you, but can I change the date of the upload to the date the blog was actually written? Example, it automatically says Nov 6 2024, as that is when I uploaded it, but it may have been written on October 2023.

    Or, maybe sort by alpha order?

    Thank you!

    #1470866

    Hi,

    Thank you for the inquiry.

    You can manually change the publish date by editing the posts. Edit the post, look on the right side of the screen under the Publish section and find the published on date. There should be an an Edit link there. On the Block editor, just click on the current date to make the calendar popup.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.