Wordpress Expert 2nd September 2011 2:13 PM
“I have this page TEST
As you can see this shows the latest blog posts now I want it to show the title before the welcome to
The online code I can see i the backend is
<?php get_template_part( 'loop', 'index' ); ?>”
As you can see this shows the latest blog posts now I want it to show the title before the welcome to
The online code I can see i the backend is
<?php get_template_part( 'loop', 'index' ); ?>”
In your source page, there is <h2> tag, which is empty, where the title should be. Find the wp-content/themes/YOURTHEME/loop.php file and see what's inside the <h2></h2>. It should contain <?php the_title(); ?> in there somehow to show the title. See if that helps.