Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: add a page to my themePeter
Forum: Themes and Templates
In reply to: Blogs are all at the top of my page!!! what did i do wrong?at the end of the line you’ve edited, put this:
</div>Peter
Forum: Themes and Templates
In reply to: Blogs are all at the top of my page!!! what did i do wrong?DWBC just post up your header.php here, make sure you put it in the code tags.
Noooo, don’t do that. Post it in pastebin instead…
EDIT: darn… too late 🙁
Peter
Forum: Themes and Templates
In reply to: Blogs are all at the top of my page!!! what did i do wrong?There’s more missing: his rss2 class div isn’t closed either.
I suppose something fell of the header.php. Any change you can upload the header.php again to your theme directory (assuming you didn’t customize it that much)?
Peter
Forum: Themes and Templates
In reply to: Blogs are all at the top of my page!!! what did i do wrong?Forum: Themes and Templates
In reply to: Blogs are all at the top of my page!!! what did i do wrong?Find in one of your themes php files (probably header.php) this word: subscribe.gif
And alter like I described.
Peter
Forum: Themes and Templates
In reply to: Blogs are all at the top of my page!!! what did i do wrong?You’ve got an unclosed img tag:
<a href="http://dwbcworld.com/?feed=rss2" rel="alternate" type="application/rss+xml"><img src="http://dwbcworld.com/wp-content/themes/prosumer/images/subscribe.gif" alt=I guess you’ve deleted something by accident.
<a href="http://dwbcworld.com/?feed=rss2" rel="alternate" type="application/rss+xml"><img src="http://dwbcworld.com/wp-content/themes/prosumer/images/subscribe.gif" alt="">Peter
Forum: Themes and Templates
In reply to: Ahhh! Help!Forum: Themes and Templates
In reply to: Ahhh! Help!First try uploading the theme again, by overwriting the existing files: maybe somewhere in the process one file got corrupted.
Peter
Forum: Themes and Templates
In reply to: Limit number of authors listed with wp_list_authors?I guess you’l have to write that function yourself, looping through wp_list_authors() and using the_author_meta() to get the five most recent registration dates (user_registered).
Peter
Forum: Themes and Templates
In reply to: Need Help ASAPLet me explain with a little example:
You’ve probably seen my normal site http://www.boosten.org.
All articles you see consist of the title and the excerpt. If you click one of the articles, you’ll get the complete text, with inserted images, which is from the same post as on the ‘index’.
For a tutorial about Page Templates, I created a different representation of information, look here: http://www.boosten.org/books.
The content (the images, book titles and authors) is from the same WordPress backend, yet the content is presented in a different way than my articles. If you click on one of the books, other content is presented in another way, but still the same WordPress backend.
So it’s possible to present the content in just any way you like.
Hope this helps.
Peter
Forum: Themes and Templates
In reply to: Need Help ASAPYES!
But: developing a theme is independent from creating actual content, you should keep that in mind (unless your content is to be VERY static = hardcoded in your template files).
Peter
Forum: Themes and Templates
In reply to: Need Help ASAPOR are there different general genres for a pages and how they work and what they consist of?
Not by default. Pages and posts consist of a title and content, and both are dependent on the author of that particular post/page, in all cases.
An author can type some text, and insert a picture, or he can choose a page template (which has to be created up front) to layout the page (applies only to pages btw) to have a different layout/content/whatever.
The styling is done through css (in the style sheet).
Peter
Forum: Themes and Templates
In reply to: Need Help ASAPSo if I get it correctly: you want to make a one-fits-all theme, with some kind of usage-selector?
Peter
Forum: Themes and Templates
In reply to: Need Help ASAPWell, WordPress only makes a difference between pages and posts. While both are actually the same (but handled differently) pages are for more static content, while posts are for blogs.
How you style one or the other is highly customizable.
Why not try to explain what you’re looking for, and we can tell you whether it’s possible or not in WordPress (a warning up front: I have yet to see an application that is not possible with WordPress).
Peter