I have php code like this
<?php 
            if ( have_posts() ) : while ( have_posts() ) : the_post();
                get_template_part( 'content', get_post_format() );
            endwhile;
            <?php next_posts_link( 'Previous' ); ?>
        endif;
?>
However, I get this error:
Parse error: syntax error, unexpected '<', expecting elseif (T_ELSEIF) or else (T_ELSE) or endif (T_ENDIF) in .../index.php on line 14
Line 14 is: <?php next_posts_link( 'Previous' ); ?> , remove this line it works normally
I use Atom for PHP coding and I see the endif; ?> get grayed out
 
    