I think all you need to do is create a table
and find the {template} output areas
Main Topics
Browse All TopicsHey everyone,
I've mainly been a .NET programmer for about 2 years now (I have a degree in comp sci should I should be able to pick up any language!) I'm about to start an online blog/community using WordPress. Time is an issue, so I picked WP and a theme. I was thinking about a free theme vs. Thesis and stumbled upon Atahualpa (free). So that's what I'm using now. (It can be downloaded here, if anyone needs to play with it: http://wordpress.org/exten
Anyway, so I don't have experience with WP, PHP, and know basics of CSS. What I'm looking to do is, take that center column and have it display 'featured post' which takes up the whole width of the center column. Then, the center column can be split to display News posts on left and Deals posts on the right. I hate to do this but if you take a look at problogger.net, you'll probably see what I mean. Not trying to copy a design, but when I drew it on paper, that's probably the best design for what I'm trying to accomplish here.
So, how do I go about making these "tweaks"? Does it occur in the loop..? I see the loop has these.. uh, php tags that display the KICKER, BYLINE, Body, etc. Or do I directly manipulate the CSS file?
I'm guessing to display the feature post, I'd have to have a feature category, and for news and deals, news and deal categories. Not sure how this all works as I'm new to WP.
If not possible, then please suggest another theme that can accomplish this. I'm willing to 'hack it up' and do this with Atahualpa if someone can help me here.
TIA.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I'm not sure what you're trying to say, NerdsOfTech. Why put a table in the loop...?
There will be two main categories: news and deals. A featured post can be a third category I suppose, but a featured post can be either news OR deals.
Can this be accomplished? Can I have these three categories but have a post belong to news And featured post or deals AND featured post?
Also, I'm pasting "the loop" code. I'm having slight trouble understanding this syntax. I tried to break it up but have a feeling it's not 'right'. Any help is appreciated if someone can explain where the php and div tags begin and if/else statements.
Lastly, how can I modify this to say: take latest entry from featured post category, post, take 5 latest entries of news, post on left column, take 5 latest deals entries, post.
I realize I'm asking for a lot, but if I can even get partial answers, that'll be great.
NerdsOfTech, it does look a bit better. So.. does this mean that an if / else statement has to be wrapped in php tags like so: < ? php .... ? > ...?
Even though I was reading t hat excellent tutorial on creating your own WP theme, it explains t he basics VERy well. I've tried google searches and all, only to no avail. I'm gonna have to find a theme that implements the split column and feature post, and see how they do it.
If anyone sees such a wp theme, please post here. Thanks.
basically WP utilizes the PHP language to output template "BLOCKS" via built in functions
All I did was place these blocks into a table
a great resource for referencing this language is actually the official PHP site:
www.php.net
With the code I supplied what happened?
Is one area somewhere it shouldn't be?
Thanks!
You can create a new "loop" for each category.
There are a couple different ways to create a new loop or even "rewind" the loop. Have you read through this section? http://codex.wordpress.org
This will only display 1 post from the "featured" category if you place it before the Loop
query_posts('category_
Yo
Then you can "rewind" the Loop.... rewind_posts();
and start it again with new rules in the News Column
query_posts('categor
then
There are other ways to accomplish this, including reusing, or creating a new query object. They are all explained in that link I provided.
gwkg,
Thanks for pointing me to the explanation of The Loop. So I'm playing around with the theme tags and the loop. I altered the code a little bit. I would think this would display all my posts (there are only 3), but it repeats two of them over and over. The loop runs forever :(, repeating those two entries. Code is pasted. Obviously I'm not terminating the loop properly. Can someone help me with what might be wrong? Thanks.
NerdsOfTech: Thanks! I am beginning to understand how a real loop now works. I found out that with Atahualpa,
it provides you with an 'above loop' part, a below loop part, and a 'the loop' part to enter code.
Turns out I need to set up the query in the above loop part. But now this poses a problem because
after I post say, <?php $my_query = new WP_Query('category_name=fe
, in the above loop part and then the loop runs, I'm not sure how the heck to setup multiple loops! If you'd or anyone would like to take a look at how Atahualpa works, you may check it out at one of the links I provided above.
I thank everyone here, especially Nerds, for going this far to help me understand how the loop works. I'm getting it, albeit, really slowly. TIA.
Business Accounts
Answer for Membership
by: toymachiner62Posted on 2009-08-20 at 12:36:05ID: 25146206
This link might help you understand wordpress better. .com/tutor ials/build ing-custom - wordpress -theme/com ment-page- 1/#comment s
http://www.webdesignerwall
Otherwise try http://wordpress.tv and see if you can find anything there that helps you out.