How to show page content as well as post lists

Nevermind, I found the answer. I should add the following just below <div class=”col-md-9″> <div id=”page-<?php the_ID(); ?>”> <?php if (have_posts()) : while (have_posts()) : the_post(); if ( has_post_thumbnail() ) : the_post_thumbnail(‘thumbs’); endif; echo get_the_date(‘jS F Y’); the_title(); the_content(); endwhile; endif; ?> </div>

Why is the_permalink not working?

In case this is the original sourcecode, there are two asterix pairs, which might break your code (getting interpreted as comments and therefore are not visible). Remove these and it should work. <?php // Start the loop if(have_posts() ) : ?> <?php while (have_posts()) : the_post(); ?> <?php $format = get_post_format(); ?> <article id=”post-<?php the_ID(); … Read more