hesed2
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help with tagsI guess I should assume that this is a bug, then?
The only explanation for why the tags are not being displayed is that the call is in the second instance of The Loop, and yet other template tags, such as `the_excerpt’ that must be within The Loop display fine.
Could someone tell me how to report this as a bug?
Forum: Fixing WordPress
In reply to: Help with tagsThe problem with putting it in The Loop the first time is that the first loop pulls the info for the Page, and there’s no way to tag pages, so it wouldn’t display any info anyway.
Shadow, that just doesn’t work.
Forum: Fixing WordPress
In reply to: Help with tagsThanks for responding. I’m running the loop twice so that I can use WP in more of a CMS fashion, creating pages that display post in a particular category. So each page only displays post from the corresponding category.
Here is the code for the page running the blog:
<?php/*Template Name: Blog Template*/?> <?php get_header(); ?> <div id="main"> <div id="content"> <!-- The Loop starts here... --> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content(); ?> </div> <p class="postmetadata"><?php edit_post_link('Edit','',''); ?></p></div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> <?php $my_query = new WP_Query('category_name=' . get_query_var('name') . '&showposts=10'); ?><!-- Rewinds The Loop so we can call more posts --> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?><!-- Restricts posts to those matching the page category --> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <p class="postmetadata">Posted by <?php the_author(); ?> on <?php the_time('D, M j, Y'); ?></p> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata">Posted by <?php the_author(); ?> on <?php the_time('D, M j, Y'); ?> | <?php the_tags('Tags: ', ', ', ''); ?> | <?php edit_post_link('Edit', '', ' | '); ?> <a href="<?php the_permalink() ?>#comments" rel="bookmark" title="Comment on <?php the_title(); ?>"><?php comments_number('No Comments »', '1 Comment »', '% Comments »'); ?></a></p> </div> <?php endwhile; ?> <!-- The Loop ends here --> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Help with tagsI’m sorry to say this, I don’t want to come across as ungrateful, but could someone tell me what I have to do to get help?
Forum: Fixing WordPress
In reply to: Author description for multi-user blogThanks for the response. It looks like
<?php wp_list_authors('arguments'); ?>
will display a list of all authors, but there’s no information there about displaying the author description. Maybe I’m not being clear about what I’m after…I’m trying to display the information that each user can enter about themselves if you go into the admin section>Users>Your Profile in the “About Yourself” field. It looks like this field was created for just such a purpose, but I can’t figure out how to get this info to display.Forum: Fixing WordPress
In reply to: Author description for multi-user blogAnyone? Pretty please?
Forum: Fixing WordPress
In reply to: Manage BlogrollEdit: duplicate
Forum: Fixing WordPress
In reply to: Manage BlogrollAnyone have any info on this? Or any idea when the info on the codex will be correct?
Forum: Fixing WordPress
In reply to: get_links() changed in 2.1?This is frustrating. There was nothing wrong with get_link(). Furthermore, the codex give no indication that get_links() won’t work. I can certainly understand adding a new template tag, but why take this old one away? All this does for me is give me a lot of tedious tweaking to do.
EDIT: Plus, the examples in the codex don’t work.
Forum: Fixing WordPress
In reply to: RSS feed not workingAnyone?
Forum: Your WordPress
In reply to: Constructive Criticism, pleaseNot a huge fan of the color combination. In Safari the right edge of the search box comes right up against the left side of the text in the main column. It needs a bit of padding to look right. OTher than that, looks good.
Forum: Fixing WordPress
In reply to: Number of comments not updatingOk, I got it taken care of. Here’s the solution, if anyone else has this problem:
After installing Spam Karma 2.1, I had to manually update the comment_count field using phpmyadmin to reflect the actual number of comments. That takes care of it.Forum: Fixing WordPress
In reply to: Number of comments not updatingI was running Spam Karma 2.0 reloaded. I deactivated it and things didn’t go back to normal.
Forum: Fixing WordPress
In reply to: Number of comments not updatingThe number is updated when I delete a comment, however. Now my most recent post is not even showing a link to the comments, since I deleted one comment from that post. Arg.
Forum: Fixing WordPress
In reply to: Number of comments not updatingI deleted the files inside the cache folder, and that didn’t do anything, so I deleted the whole directory, and that didn’t change anything either. What should the permissions be set to?
It’s really frustrating that there are no option in the Admin section to control this or turn it off (or even anything that mentions that it’s happening at all!).