Wordpress - Custom Theme Development
What is wrong with this code snippet?
if ( have_posts() ) {
while ( have_posts() ) {
the_post;
the_title();
}
}if ( have_posts() ) {
while ( have_posts() ) {
the_post;
the_title();
}
}the_post is missing parentheses, so it is not called properly.the_post(); is correct.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions