[Resolved] How to show updated on date on blog posts

Home Forums Support [Resolved] How to show updated on date on blog posts

Home Forums Support How to show updated on date on blog posts

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2379853
    Junaid

    I want to show “last updated” or “published on” on my blogs instead of publishing date. How can I change that date?

    #2379917
    David
    Staff
    Customer Support

    Hi there,

    are you using the Block Editor on that site ?

    #2382011
    Junaid

    I have no idea. What is block editor? I am using a regular WP editor.

    #2382061
    David
    Staff
    Customer Support

    Any new install of WP would use the block editor.
    Does it look like the screenshots shown here:

    https://wordpress.org/support/article/wordpress-editor/

    #2382897
    Junaid

    That’s right. I am using block editor. I am not using classic editor or any other editing plugin.

    What should I do to show last updated on my updated posts?

    #2383298
    Ying
    Staff
    Customer Support

    Try this CSS:

    .posted-on .published:before {
        content: "Published on: ";
    }
    
    .posted-on .updated {
        display: inline-block;
    }
    
    .posted-on .updated:before {
        content: "Last updated: ";
    }
    
    .posted-on .updated + .published {
        display: none;
    }
    #2387467
    Junaid

    Thank you, it’s working.

    #2388437
    Ying
    Staff
    Customer Support

    You are welcome 🙂

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