• Resolved nelsonsitompul

    (@nelsonsitompul)


    I have old domain and nowaday try to build new site. I want to back date the post and page. I already changed the date on post dasboard, but your theme shows real date (this day).
    Can you help me? My domain is nelsonsitompul.com.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Rinku Y

    (@rinkuyadav999)

    Hi @nelsonsitompul

    SEOPress theme display the_modified_date (date of last update).

    if you want to display post publish date, you need to do small change.

    replace ‘the_modified_date’ with ‘the_date’ in themes\seopress\inc\core\individual-functions.php file @ line 16

    Like: this
    <a href="<?php the_permalink(); ?>" ><span class="post-date updated"><?php the_modified_date(); ?></span></a>

    should be:
    <a href="<?php the_permalink(); ?>" ><span class="post-date updated"><?php the_date(); ?></span></a>

    NOTE: i will recommend to use ‘the_modified_date’ because it helps search engines.

    Thanks

    Rinku Y

    (@rinkuyadav999)

    However we will add this option in next update.

    Thread Starter nelsonsitompul

    (@nelsonsitompul)

    Thanks for the answer and your recommendation. Especially if you added option for next update. I love your theme, man..

    That option sounds like a good idea. ??

    Rinku Y

    (@rinkuyadav999)

    Hi

    This option has been added and can be found here: SEOPress options > Blog options > Post Date View.

    Thanks

    It works, thanks!

    However, if two articles are published the same day, the first article does not show a publication date, only the second one, the newer one does.

    Thread Starter nelsonsitompul

    (@nelsonsitompul)

    Best support! Thanks man

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Change Date’ is closed to new replies.