Displaying Comments on Front Page
-
How do I display my comments on the front page. I did a search and found this, but it didn’t say where to put the hack:
In the theme I’m using “Wuhan Aumtumn” there’s no template called “front Page”. Besides, even if there were, I sill have no idea where to put the hack.
ric
// Kubrick Front Page Hack
<?php
if (empty($_SERVER[‘QUERY_STRING’])) { // Query string empty?
$withcomments=”1″; // Show comments regardless.
include(ABSPATH . ‘wp-comments-noform.php’); // Yep. Display comments, no form.
$withcomments=”0″; // Reset withcomments to zero
} else {
include(ABSPATH . ‘wp-comments.php’); // Nope, business as usual.
}
?>
// End of Hack
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Displaying Comments on Front Page’ is closed to new replies.