• Hello all, Please help!

    I recently installed Kadence theme which is amazing because I am getting all the options that I was looking for, besides one issue.

    When I am updating any of my post, it should appear first, it not. However, the date is changing from published to last updated date but, why the updated post is not appearing at the first position.

    My website is this.

    one more thing, when I update any post and turn ON feature that replace the published date to the updated date, will it update in the google or only for the visitors who are landing on the website?

Viewing 10 replies - 1 through 10 (of 10 total)
  • hannah

    (@hannahritner)

    Hey,

    1. Thanks for reaching out! I am actually seeing your most recently updated posts appearing first. See screenshot: https://ibb.co/4ppT91x Are you seeing something different?

    2. This should also update in Google. It may just take some time for the caching to clear.

    Kindly,

    Hannah

    @hannahritner Thanks for your reply. But i don’t think you understand what @samuelastin is talking about.

    Anyhow I also need same feature if possible.

    Let say you publish an article last week, and today you edit the article. How can we make that article appear first on the homepage before every other post?

    That is, how to make that edited article appear FIRST on the homepage as if it was just originally published.

    I hope you understand it now.

    hannah

    (@hannahritner)

    Hi @gw808092,

    I think I do understand and that is what I am seeing. Can you send a screenshot of what you’re seeing?

    Kindly,

    Hannah

    @hannahritner Here is a screenshot like https://ibb.co/0YTJ0kC

    Edited post are not appearing first on homepage, they remain on their publish date position.

    hannah

    (@hannahritner)

    Hi @gw808092,

    Apologies for the delay. Sorry, can I also have a link to your site?

    Kindly,

    Hannah

    @hannahritner yes you can. Here’s the link legitpedia

    Thanks

    hannah

    (@hannahritner)

    Hi

    Apologies for the delay! And I also have to apologize for misspeaking. There, unfortunately, isn’t a built-in feature to do this with Kadence. Theme. I suggest submitting a feature request here:  https://www.kadencewp.com/kadence-theme/feature-requests/

    If you would like, you can use a Code Snippet to change your Blog Archive order. Are you familiar with the CodeSnippets plugin? This plugin allows you to add snippets of code to your website.
    You can get it here: https://wordpress.org/plugins/code-snippets/

    This snippet should do it for you:

    add_action( 'pre_get_posts', function( $query ) {
    if ( $query->is_main_query() && ( $query->is_home() || $query->is_search() || $query->is_archive() ) ) {
    $query->set( 'orderby', 'modified' );
    $query->set( 'order', 'desc' );
    }
    } );

    I hope that’s helpful!

    Best,

    Hannah

    Thank you so much. I’ll try it and give update here.

    Thanks

    Thank you so much. The code snippet works just fine. Thanks again @hannahritner

    hannah

    (@hannahritner)

    Glad to hear it! Happy to help.

    Best,

    Hannah

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘last updated post are not showing first in Kadence theme’ is closed to new replies.