codergurl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I show 5 most recent posts on my site?Or you can use a built in function…
<?php wp_get_archives('type=postbypost&limit=5'); ?>Forum: Fixing WordPress
In reply to: Date Formatting$post_date = date(‘date_format_here’, strtotime($post->post_date));
Forum: Fixing WordPress
In reply to: How to have a script in your post?Do you want to display the tags or execute the code?
Forum: Fixing WordPress
In reply to: nextpage doesn’t work (or else?)Do you have the link page function in your template inside of the loop? The next page/previous page attributes are not functional but the numbering should show up.
<?php link_pages('Pages:'); ?>
Forum: Fixing WordPress
In reply to: RSS?The comments feed works just fine, so I’m guess there was a problem when you uploaded the file. Try re-uploading it.
Forum: Themes and Templates
In reply to: Date Written OutOptions > General Options: Date & Time
Forum: Themes and Templates
In reply to: Date Written OutForum: Fixing WordPress
In reply to: RSS?Forum: Fixing WordPress
In reply to: Automatically adding post-slugs to imported entrieOh, I’m sorry. I posted the code wrong. It should work now. 🙂
Forum: Your WordPress
In reply to: www.maybeithinktoomuch.comMaybe add a bit more color? Everything except for the header and link buttons are black and white.
Forum: Fixing WordPress
In reply to: Last X Entries !?Use $posts_per_page = #; before the blog header inclusion in the index file
Example:
<?php
$posts_per_page = 10;
/* Don't remove this line. */
require('./wp-blog-header.php');
?>
Forum: Fixing WordPress
In reply to: When visiting archives style info is lostI can see it just fine, but there is a php warning showing up at the top of the page. It looks like the user online script is causing the style switcher to bitch.
Forum: Fixing WordPress
In reply to: Multiple blogs?nope. it’s being worked on though. 🙂
Forum: Fixing WordPress
In reply to: Wiki quesiton re: wp_list_cats()<?php wp_list_cats(‘optionall=1&all=All&hide_empty=0&optioncount=1’); ?>
Forum: Fixing WordPress
In reply to: New Catagory Doesn’t ShowIf you add a post to the category, then it will show up. <?php wp_list_cats(‘hide_empty=0’); ?> will show all categories. 🙂