Joshua Sigar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Gespaa Sidebar appearing at bottom of the page on indexOkay, another validation result, but this one has line number that you could click on and it will take you to the corresponding line in your source code. Start from point 6.
http://validator.w3.org/check?uri=http%3A%2F%2Fblog.course-notes.org%2F&charset=%28detect+automatically%29&doctype=%28detect+automatically%29&ss=1&verbose=1Forum: Fixing WordPress
In reply to: Putting A catagory on a page with an include?Download the following plugin, which will allow you to insert php code in a post.
http://priyadi.net/archives/2005/03/02/wordpress-php-exec-plugin/And then insert the following code to call all posts of category “photo”
<phpcode>
<ul>
<?php $my_query = new WP_Query('category_name=photo'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_content(); ?></a></li>
<?php endwhile; ?>
</ul>
</phpcode>Forum: Everything else WordPress
In reply to: IconsGravatar
Forum: Themes and Templates
In reply to: Gespaa Sidebar appearing at bottom of the page on indexYour site validation result follows.
http://validator.w3.org/check?verbose=1&uri=http%3A//blog.course-notes.org/Start at point 7, you’re missing some closing tags. You could probably safely ignore image-related validation error, but the html tags need to be well-formed.
Forum: Fixing WordPress
In reply to: Pics don’t show in Category or ArchiveIt’s because in Archive and Category page, the post content is displayed with “the_excerpt()” template tag
Change it with “the_content()” and it should show the full post and images.
The files to modify are category.php and archive.phForum: Fixing WordPress
In reply to: link to page – WP overwrites link!Are you saying that you’d save a post with a link, and when you edit the post, the original link has changed?
Forum: Fixing WordPress
In reply to: How do I take out an enclosure?I heard there’s gonna be more hooks/filters for RSS for the next release; so, expect a plugin solution sometime.
Forum: Everything else WordPress
In reply to: PHP EquivalentThose are WP-defined functions/variables. To look at definition, browse the source code.
I don’t really understand the question, by the way 😛
Forum: Fixing WordPress
In reply to: How to use image dateForum: Fixing WordPress
In reply to: Creating 404 page to match custom Rin designbtw everything below #
<?php footer(); ?> should be deleted
and change <?php footer(); ?> to <?php get_footer(); ?>.Forum: Fixing WordPress
In reply to: Creating 404 page to match custom Rin designhow do you test the 404 page?
Forum: Fixing WordPress
In reply to: exclude multiple categories with query_posts?Take a look at the following plugin.
http://www.nmyworld.com/wordpress/2005/04/elegant-category-invisibility-69/Forum: Fixing WordPress
In reply to: Creating 404 page to match custom Rin designCan you paste your 404.php here: http://pastebin.com ?
Forum: Fixing WordPress
In reply to: Creating 404 page to match custom Rin designCurrently you have header() and sidebar(); they’re supposed to be get_header() and get_sidebar().
Below should print the current category id of a page.
<?php echo get_query_var( 'cat' ); ?>