nmallory
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WP Theme: Mint JulepNifty. 😉
Forum: Your WordPress
In reply to: Just Starting Out.There is a lot of good info in the Codex which may help: Getting Started
Forum: Themes and Templates
In reply to: WP Theme: Mint JulepI love the colors and the way the posts look, but what happens if the post title is rather lengthy? Will it truncate or go out of the “box”?
BTW, I really do like your designs. I’ve been studying them for several days. 😀
Forum: Your WordPress
In reply to: How do you like me now?OK I got the cat pages to list all titles, not just the default. 😀 I’m getting the hang of this.
My next challenge will be to design my own theme for my personal blog (http://nmallory.exit-23.net). I’m thinking 3 columns, 1 image floating over the middle menu column… hmmmm….
Also, I’ve mostly finished my diet blog’s design (http://www.nothingtastesasgood.com).
Thanks so much for the suggestions and advice! Please feel free to offer constructive criticism anytime. 😀
Oh, and tips and tricks for the alphabetical, headline only, all-posts listed category pages can be found here.
Forum: Plugins
In reply to: alphabetical listing of posts????Actually, there is.
Again, here’s my code from my index.php (main page):
<?php if (is_category()) { $posts = query_posts($query_string . '&orderby=title&order=asc&posts_per_page=-1'); } ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
The ‘posts_per_page=-1’ tells it to post them all.
Here is the code further down that tells it whether to use just the title & date or output content too:
<?php if (is_home() || is_date() || is_author()) { ?>
<div class="meta"><?php _e("filed under"); ?> <?php the_category(',') ?> <?php _e("on");?> <?php the_time('l j F Y'); ?> <?php _e("at");?> <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
<?php } else { ?>
<div class="meta"><?php _e("on");?> <?php the_time('l j F Y'); ?> <?php _e("at");?> <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
<?php } ?><?php if (!is_category() || !is_archive()) { ?>
<div class="storycontent">
<?php if (is_home() || is_date() || is_author() || is_archive() || is_category()) {
if ( in_category('5') ) { the_excerpt_reloaded(30, <i><em><img><a><b>
<ul>
<li>
<ol><br>, content, TRUE, (more...), TRUE, 2, TRUE);
} else {
the_excerpt_reloaded(50, <i><em><img><a><b>
<ul>
<li>
<ol><br>, content, TRUE, (more...), TRUE, 2, TRUE);
}
} else { the_content(); }?>
</div>(Note: I am using the_excerpt_reloaded () plug-in rather than the default the_excerpt() function.)
Here‘s how my category pages look as opposed to my index page.
Forum: Plugins
In reply to: alphabetical listing of posts????Add this line:
<?php if (is_category()) { $posts = query_posts($query_string . '&orderby=title&order=asc'); } ?>above this line:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>Forum: Everything else WordPress
In reply to: WordPress Codex: New Look!Yes, thank you very much! Outstanding job!
Forum: Fixing WordPress
In reply to: Is codex down?You know, I want to say after spending some time reading through the Codex, that it really is well-written and well-put-together and there’s a lot of good design information there that isn’t specific to WP.
My only complaint is that I’m unable to do printer-friendly pages without images (some of the articles have images embeded), but really that’s not a big deal.
I am printing up everything I think I’m going to need to work on my new blog design while on the plane this weekend. Somehow I don’t think they will have wi-fi on independence air. 😉
Forum: Fixing WordPress
In reply to: Controling number of posts displayed…oooo, I’m very interested in the answer to that question as I’ve been considering that for the last day or so myself.
Forum: Fixing WordPress
In reply to: Controling number of posts displayed…How true.
I also find that if I call someone and ask them if I loaned something to them, I will immediately find the missing item.
Forum: Everything else WordPress
In reply to: My web host does not want to host WordPress …I just wanted to add my 2cents. 😉
I was using Greymatter for a long time and that software does have huge gaping security holes. I had to delete and restart several blogs because once I got over 150 posts, when I updated the site in anyway, I’d get my account shut down because it was using to much CPU time, etc.
As an alternative, my host actually recommended WP to me. I think they even have one of those easy set up functions though I didn’t use it.
I certainly think that WP is far more stable, feature-rich, and secure than Greymatter so I wonder if your host has WP confused with some other types of journal-ware.
Forum: Fixing WordPress
In reply to: future posts posting in present or not at all?I’m currently using WordPress Email Notification Plugin v2.1.1. (This journal is http://www.nothingtastesasgood.com)
Forum: Fixing WordPress
In reply to: future posts posting in present or not at all?However, the notify email went out saying it had been published though it hasn’t yet. 🙁
Forum: Fixing WordPress
In reply to: Is codex down?Dang it and I was going to work on a brand-spanking new theme when I got home…I need the codex… 🙁
Forum: Fixing WordPress
In reply to: future posts posting in present or not at all?Yup, under manage, I see it with tomorrows date at noon. 🙂