ColoredCow / wordpress-bootcamp-2020

Bootcamp on WordPress as part of CodeTrek 2020
Other
1 stars 1 forks source link

Day 3 – Taking your theme to the next level. #3

Open pokhiii opened 4 years ago

pokhiii commented 4 years ago

You’ll make your site content dynamic and will see why WordPress is the world’s best CMS.

To Dos

See links

  1. Bootstrap starter template
  2. https://developer.wordpress.org/reference/functions/the_title/
  3. https://developer.wordpress.org/reference/functions/the_content/
  4. https://developer.wordpress.org/reference/functions/the_post_thumbnail/
  5. https://developer.wordpress.org/reference/functions/add_theme_support/
pokhiii commented 4 years ago

To get the title

<?php echo get_the_title(); ?>

To get the content

<?php
while ( have_posts() ) {
    the_post();
    the_content();
}
?>
junaid1010 commented 4 years ago
Riya2903 commented 4 years ago
gangwar4adarsh commented 4 years ago
ishgary commented 4 years ago
Sam23599 commented 4 years ago
bj293 commented 4 years ago
gaurish-saini commented 4 years ago
swati999-bhatt commented 4 years ago