Last active
June 19, 2020 11:33
-
-
Save rahuladams/dec0b55d648d81e5971ce40b2049bdfe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get featured image | |
<?php get_the_post_thumbnail_url(); ?> | |
// Content loop | |
<?php while (have_posts()) : the_post(); ?> | |
<?php the_content(); ?> | |
<?php endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment