display post titles solely in the front page at wordpress
modify the index.php in the theme folder to:
<div class=”entry”>
<?php
if (is_single()) {
the_content();
}
else {//no content, nothing.
}
?>
modify the index.php in the theme folder to:
<div class=”entry”>
<?php
if (is_single()) {
the_content();
}
else {//no content, nothing.
}
?>