I am building a website using Wordpress. However, I have a "About" section on my homepage (index.php) and I would like to make it dynamic and want to show author's information on this section.
I was following a tutorial and they added the following code to show author's information in one of the page:
<?php the_author_meta( 'description' ); ?>
But that doesn't work on my homepage (index.php file). How can I do this? Can anybody help me?