dor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Comment form linkI guess,
archive.phpdoes exactly what’s you are looking for?Forum: Fixing WordPress
In reply to: How to change message “Error establishing a database connection”Somewhere there is a plugin for maintenance mode, if i can remember.
May be it isn’t what you want exactly, but… i guess you can not change php error messages so easy.
Forum: Fixing WordPress
In reply to: jQuery not found error when WordPress not in the root DirectoryWell… should be ok.
Can you post your .htaccess here?
(Sometimes there can be a magic — try to check “Options->General” and “Options->Permalinks” and press “Update” in both places.)
Forum: Fixing WordPress
In reply to: jQuery not found error when WordPress not in the root DirectoryCheck
WordPress address (URL)andBlog address (URL)in Options->General.Forum: Fixing WordPress
In reply to: After moving server permalinks don’t workThat apache can ignore your .htaccess, if it wasn’t allowed to override…
So, there in httpd.conf should be AllowOverride +Files, AFAIR.
Forum: Themes and Templates
In reply to: next and previous PAGE linkGreat, you’ve read my answer, so now i will blame myself 🙂
The point is that you hardly need to get “next by ID” — if you have you pages structured, you need “next in structure”.
So, you can take a look at wp-includes/post-template.php — how
wp_list_pages()does this.Well, it uses Walker_Class, not sure if this can help you.
Sorry for the noise.
Forum: Themes and Templates
In reply to: next and previous PAGE linkWell… Whether you’ve noticed it or not — i’m not a programmer at all 🙁
🙂 Honest.
I guess you need to have page id… Probably then i would try with SQL query like that (not a real query! in meta-language, let’s say):
SELECT id, title WHERE post_type = "page" and id > this_page_id LIMIT 1;(you’ll need to check some things before trying this for real)
This will give you id an title for “next” (by id) page…
This is a wild guess.
Most probably i would first try this with
wp_query, not ‘raw’ SQL query…Hope this helps… And hope somebody else helps too.
Forum: Themes and Templates
In reply to: next and previous PAGE linkWell, yes, i would say you need your own query and the Loop…
But because of you talk about a single page — you need your own function to get your prev. and/or next page… in order you defined.
So, i believe, you need your own function.
Forum: Themes and Templates
In reply to: Adding a secont single.php to my theme.“Sorry, i haven’t tried this before” ™,
but “i would try the following” ™:– analyze custom field;
–include()needed template…I’m not sure this will work though…
Well… may be this is not what you’ve asked, sorry 🙂
Forum: Themes and Templates
In reply to: next and previous PAGE linkWhat is list of pages? How you suppose them to be ordered?
Forum: Themes and Templates
In reply to: is_category_child_ofin_category()?..Forum: Themes and Templates
In reply to: next and previous PAGE linkWell… What is a “next page”? Regarding to posts this has chronological meaning…
So, can you tell what is “next page”… for you?-)
Forum: Fixing WordPress
In reply to: wordpress in two languagesHave you tried to find a plugin?
Have a try 🙂
Forum: Fixing WordPress
In reply to: new blog – can’t upload imagesThat dir must be writable by “web server user” (effective user id of running process).
Forum: Fixing WordPress
In reply to: how can i list all my posts in one drop list in alphabetical order?Have you tried in some way?
I guess it’s possible and can put some thoughts here, but almost sure you’ll find better examples in the docs…