arrakistor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I hide a catagory from the catagory list?Solution:
use &exclude=
Forum: Fixing WordPress
In reply to: Comments link does not work. Help!SUCCESS.
For some reason, my theme was missing
<div class="comments"> <h4>Comments</h4> <?php comments_template(); // Get wp-comments.php template ?> </div>in the index.php
Forum: Fixing WordPress
In reply to: Comments link does not work. Help!UPDATE: I added the code into the loop and what it does show is No Comments, through home.php.
When you click on the “No Comments Yet” link, which is linked to #respond, it takes you to the full article as if you had clicked “read more”.
OK fine, so then we would have to actually read the full article (via index.php) to make a comment.
Then in index, I added the
<a href="<?php the_permalink(); ?>#comments"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></a>for enumarating comments in a single post.
That creates the %permalink%/#comments.
Guess what. %permalink%/#comments does NOTHING. Why is there still no comments section show? Where is the comments section supposed to be?
Forum: Fixing WordPress
In reply to: Comments link does not work. Help!<?php $recent = new WP_Query("cat=30&showposts=10"); while($recent->have_posts()) : $recent->the_post();?> <span style="font-size:18px;"><b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b></span><br /><br /> <div class="date"> <p><b><?php the_time('g:i A'); ?></b> on <?php the_time('D M j Y'); ?></p> </div> <br /> <?php the_content(__('Read This Article »'));?> <br clear="all"/> <?php comments_popup_link('No comments yet', '1 comment so far', '% comments so far (is that a lot?)', 'comments-link', 'Comments are off for this post'); ?> <div class="hppostmeta"> </div> <?php endwhile; ?>Again, it doesn’t show anything. It’s as if the code is totally ignored while in the post enumeration loop.
Forum: Fixing WordPress
In reply to: Comments link does not work. Help!TTT! Still no help?
Forum: Fixing WordPress
In reply to: Comments link does not work. Help!bump
Forum: Fixing WordPress
In reply to: Comments link does not work. Help!Also, there is no The_Loop in this index, not applicable. I also stuck this into my index,
<?php comments_popup_link('No comments yet', '1 comment so far', '% comments so far (is that a lot?)', 'comments-link', 'Comments are off for this post'); ?>without any success. It doesn’t show up at all.
Forum: Fixing WordPress
In reply to: How do I publish to categories without them appearing on home page?I’ve changed home.php to use this:
<?php $recent = new WP_Query(“cat=30&showposts=10”); while($recent->have_posts()) : $recent->the_post();?>
Forum: Fixing WordPress
In reply to: .htaccess 301 redirect of index.htmlDo the rewrite from index.html to index.php