The blog posts are displayed under my “blog” page, but I don’t see the blog roll or any coding in it when I click on the “text” tab. I can’t seem to figure out how the blog posts are appearing on my “blog” page.
I’m looking at the various php files, and I’m seeing a page.php – not sure if this is where I need to put in some extra lines to make the title appear? At one point, I see this:
// Page title and content
$gdl_show_title = get_post_meta($post->ID, 'page-option-show-title', true);
$gdl_show_content = get_post_meta($post->ID, 'page-option-show-content', true);
if ( $gdl_show_title != "No" ){
while (have_posts()){ the_post();
echo '<div class="sixteen columns mt30">';
echo '<h1 class="gdl-page-title gdl-divider gdl-title title-color">';
the_title();
echo '</h1>';
$content = get_the_content();
$content = apply_filters('the_content', $content);
if( $gdl_show_content != 'No' && !empty( $content ) ){
echo '<div class="gdl-page-content">';
echo $content;
wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'gdl_front_end' ) . '</span>', 'after' => '</div>' ) );
echo '</div>';
}
Does this help in any way/