Site logo

[Resolved] Show the “Updated” Post Date on single page post

Home Forums Support [Resolved] Show the “Updated” Post Date on single page post

Home Forums Support Show the “Updated” Post Date on single page post

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #648054
    Immi

    Hello there, I want to display ‘last updated’ date on single page/post and on home page seen by normally date format like 14 august 2018.
    My css is below
    .posted-on .updated {
    display: block;
    }

    .posted-on .published {
    display: none;
    }

    .posted-on .updated:before {
    content: “Updated: “;

    }

    #648486
    Leo
    Staff
    Customer Support

    Hi there,

    Can you try modifying the date setting here?
    https://codex.wordpress.org/Settings_General_Screen

    Let me know if this helps 🙂

    #648608
    Immi

    Hello Leo, i want to display last updated date on single post/page page view. and post on published display on homepage view.

    #648666
    Leo
    Staff
    Customer Support

    Ok so you basically want the solution above but only apply to single post?

    If so try this instead:

    .single .posted-on .updated {
        display: block;
    }
    .single .posted-on .published {
        display: none;
    }
    .single .posted-on .updated:before {
        content: "Updated: ";
    }
    #648677
    Immi

    not working for me

    #648679
    Leo
    Staff
    Customer Support
    #648681
    Immi

    thank you so much Leo

    #649350
    Leo
    Staff
    Customer Support

    No problem 🙂

    #650312
    Vijaykumar

    Hi Leo
    I have used the PHP and CSS code for showing the updated date. The code I used is as shown here https://woorkup.com/generatepress-review/

    This is for my site SoftwareTestingHelp .com
    BUT this updated date is showing ONLY on POSTS. I want to show the same on PAGES as well.
    Can I know what is wrong here?

    #650820
    Leo
    Staff
    Customer Support

    Have you tried this here?
    https://docs.generatepress.com/article/show-the-updated-post-date/

    If this doesn’t work any chance you can open a new topic?

    Thanks!

    #653940
    Vijaykumar

    Yes already tried that but it showing the updated date on only POSTS not on PAGES. I am creating new ticket.

    #654574
    Leo
    Staff
    Customer Support

    Thanks 🙂

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