I was trying to make a page so I put a post on a specific page on Wordpress and I ended up getting a syntax error. Below is the code I used.
 <?php /* Template Name: blog */
    global $more;
     $more = 0;
     query_posts('cat=29');
    if(have_posts()) : while(have_posts()) : the_post();
     ?>
    </p> 
    <p>
    <a href=&quot;<?php the_permalink(); ?>&quot;><?php the_title( '</p> <h3>', </h3> <p>' ); ?></a></p>
     <p>
    <?php endwhile;
    <endif;
    wp_reset_query(); 
    ?>
 
     
     
     
    
',
' );`, but indeed, PHP should have told you the problem in the error message it gave.
– Ben Hillier Jul 14 '16 at 08:21