okay so you are mega lazy and thats just sad.
but
ive come with a solution, but although it works for me right now, it's not very reliable.
so to have my posts organized in following way:
list posts > go to and read post > click on comments and go to post title only and comments template
ive created an extra category called "comments", then i obviously applied it to all the posts that i want to use separate comments template with and i've added this in my category.php template file:
<?php
foreach((get_the_category()) as $category) {
if($category->cat_name != 'comments'){
$link = get_category_link($category);
echo '<a href="' . $link . '">' . $category->cat_name . '</a> ';
}
else{
$permalink_array = explode('/', get_permalink());
$permalink_elements = count($permalink_array);
$post_url = $permalink_elements - 1;
$link_to_comments = $permalink_array[$post_url];
}
}
?>
<?php edit_post_link('Edit', '', ' | '); ?>
<a href="<?php echo get_category_link($category); ?>/<?php echo $link_to_comments; ?>"><?php comments_number('No comments', 'One comment', '% comments' );?></a>
so right now i have two permalinks to one post, one is the regular one:
http://mysite.com/news/economics/post_title.html
and the second one that i use for displaying comments is:
http://mysite.com/comments/post_title.html
and ive put this in my single.php file:
<?php
if (in_category($comments_category)) {
// post-title and comments only template
}
else{
// single post template that shows post title and content and a link to comments
}
?>
as i mentioned its not the ebst way to do it because i have to make sure that i posted this post in "comments" category as well, which is a bit annoying but since no one wanted to help me out thats what ive come up with