Here is a line of code that I want to comment out,
<h1 class="post_title"><a href="<?php the_permalink();?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
A popular way to comment it out would be to comment out the html and php separately.
<!-- <h1 class="post_title">
<a href="<?php // the_permalink();?>" title="<?php the_title_attribute(); ?>">
<?php // the_title(); ?></a>
</h1>
-->
Is there a better way to do this?
Suppr, definitely the best way to comment out some code.