How to move the publish date from top to bottom of Wordpress blog posts?

Our Wordpress blog shows the date the blog post was published next to the title, at the top of the each blog post.

How can I move the date to the bottom of each blog please?

Thanks in advance.

Hi,

You would need to edit the file “single.php” in you themes folder.
this file is responsible for the layout of the individual posts.
Look for a line similar to this:

Added on <a href="<?php bloginfo('url'); ?>/<?php the_time("Y"); ?>/<?php the_time("m"); ?>"><?php the_time("d.m.Y"); ?></a>

and move it to the bottom of the post.

Thanks a lot for your help.

Done.