Leovenous
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WP 3.x Specific Theme Documentation?I’ll keep poking around in those. Thanks for your time.
Forum: Themes and Templates
In reply to: WP 3.x Specific Theme Documentation?esmi I saw that too. I guess I was looking for something more narrative than a bullet point list.
Forum: Fixing WordPress
In reply to: Fail query_posts on multiple categoriesHey I used the category numbers method and it works. I don’t see why the slugs wouldn’t work, but it is what it is. Thanks for your input folks.
BTW g3legacy, for non-outputting php5 its okay to have
<?
only, but it was an accident in this case.Forum: Fixing WordPress
In reply to: Fail query_posts on multiple categoriesHere is the whole section if it helps:
`<p><select name=”trip” multiple size=”6″>
<?php query_posts(‘category_name=upcoming-trips’); ?>
<? while (have_posts()) : the_post(); ?>
<option value=”<?php the_title(); ?>”><?php the_title(); ?></option>
<?php endwhile; ?>
<option value=”No Specific Trip”>No Specific Trip</option>
</select></p>`Forum: Fixing WordPress
In reply to: Fail query_posts on multiple categoriesyou haven’t read the codex.
Yes I had. Several times. And I experimented with it. This is why I hardly every post in the WP forums. Are you all so burnt out by the lame-o’s that you have to be pissy to everyone?
Display posts that have these categories, using category slug:
query_posts( 'category_name=staff,news' );
How is what I did different from the codex? I’m using category slugs separated by a comma.
Chinmoy29 I tried that and it didn’t worked. Tanked the whole query again.
Forum: Fixing WordPress
In reply to: Mail A Custom Contact FormI just did it the old-fashioned way. Wrote up a php script that then directed to a thank-you template page. Maybe not the most elegant, but it works.
Forum: Fixing WordPress
In reply to: Mail A Custom Contact FormI thought of something like that. Just seems messy.
Forum: Fixing WordPress
In reply to: Server config for pretty permalinksI’m still working on this.
Forum: Fixing WordPress
In reply to: Server config for pretty permalinksAnd for the record I did read all the docs I could and followed most of the external links and read them.
Forum: Plugins
In reply to: Multiple Loop FloopWow. Did you know you are very right sometimes Mosh? I had wondered about the_post but wasn’t able to gain enough understanding on it to see the light.
Okay, well after a few days of banging my head its nice to be moving forward again. Thanks!
Forum: Plugins
In reply to: Multiple Loop FloopUmmm, thanks but, yeah that’s what I’ve been reading and reading (I have a loose grasp on PHP).
What gets me is; it is normal for me to run 2.. 3.. 4 loops on a page, and they don’t interfere with each other. But something about trying to call the Page data, either by
have_post
or byquery_posts('page_id [or page]')
doesn’t sit right.I may break down and put the page content in a post and call it in specifically. Arg…
Forum: Plugins
In reply to: recent posts by category in pages, not in loop subpages list in sidebarLooks like you need to get handy with the various uses for the
query_posts()
tag. It’s great for multi-faceted page templates (don’t hurt me Mosh).Forum: Plugins
In reply to: Multiple Loop FloopI’m still trying to work through this. Kind of in the read-documentation-for-the-tenth-time-and-blindly-experiment mode.
Forum: Fixing WordPress
In reply to: Adding Posts to Specific PagesYeah, you have a point in that the template hierarchy is underused, but I am always using WP as a CMS, so my mind lives in page templates.
Forum: Fixing WordPress
In reply to: Second Admin Can’t UploadOkay, turns out she had McAffee security service on and somehow that was blocking her ability to see the Upload/Browse dialouge. Thats so strange cause everything else was working fine.
Oh well, thats why I use ZoneAlarm I guess.
Resolved.