cjk
-
help understanding how to do multiple wordpress loops on one page
Hey Robski, how about the $my_query = new WP_Query() method and the get_post() method? I know the new WP_Query eliminates rewind and reset, I use that on my site to list posts from specific categories on certain related page pages. The get_post() m…
-
wp_list_pages struggles
Getting closer but not quite there yet. Here is what I have now in my child functions.php - I use Thematic // Add training articles menu list function training_articles_menu() { global $post; if (is_page('training-articles') || ($post-&g…
-
Migrating Wordpress from subdomain to root
Found the ajax problem, it is a plugin. So to recap, the article at askwp that tells you to move, not copy index.php from your wordpress directory and then create a blank index.php in the wordpress root is wrong, at least in my installation anyway.…
-
Migrating Wordpress from subdomain to root
In the article on askwpgirl it states Next, MOVE (do not copy) the index.php file that is in the WordPress application directory to the root directory. She goes on to say that you should make a blank index.php in the wordpress application direc…
-
Migrating Wordpress from subdomain to root
Clokey, how did you handle your redirects? I tried using redirection plugin regular expression setting and put source: /blog/* and target as / this caused problems of course since wp-admin lives in /blog/wp-admin so I couldn't log in, also I g…
-
Migrating Wordpress from subdomain to root
May it might be worth just changing the site (try these kind instructions: http://askwpgirl.com/how-do-i-move-wordpress-from-a-subdirectory-to-the-root-directory/) and seeing what happens, if it fails just reverse the procedure! That's the way…
-
Migrating Wordpress from subdomain to root
AustinKnight - Thanks! Yes, this would be one way to accomplish what I am thinking of doing and I have to wonder if it is the best, easiest. The other idea that has popped up is to simply leave my installation at www.mydomain.com/blog/ and figure…
-
Swap background on hover
Well you could do this with positioning and negative margins etc. but that would mean a full page image for each link button.... sucks bandwidth in a hurry. Chris wrote a demo on this concept that can be found in downloads, I think it was remote lin…
-
Wordpress Multiple Menus
Custom post types? That second section could be custom post types yeah? Codex So, you could set up a custom post type for your youth pages, a "single-type" template for custom posts and then call a custom header.php from that custom pos…
-
Migrating Wordpress from subdomain to root
Oh, btw, I found this post which is pretty timely, but not a complete solution for what I want to do.
-
Migrating Wordpress from subdomain to root
Clokey, I installed my wordpress into the subfolder, now I would like to take it out of the subfolder and put it in the root. I think a new install is in order, and then use the importer to bring everything back in to the new installation. Any lin…
-
Migrating Wordpress from subdomain to root
Hi Clokey, I have read that thread and just had a look at the plugin. I'm not sure this will be the solution I am looking for since the issue is not what I have. The thread and the plugin solve the problem of changing your permalinks but wha…
-
Using query_posts in Wordpress - the_post_thumbnail isn't working
"showposts" is deprecated, try posts_per_page I don't know if this will have any effect, but give it a try! ie: change: to:
-
Using query_posts in Wordpress - the_post_thumbnail isn't working
Try this for chuckles...
-
[Solved] Multiple Loop in WP for 404page, want full list of posts (not first 10 only)
Thanks Chris, I would never have guessed and I didn't see anything in the Codex to suggest it. Odd though, in this case it says "all" yet when we use it in the regular loop for Categories, for example, -1 would be saying get all cat…
-
[Solved] Multiple Loop in WP for 404page, want full list of posts (not first 10 only)
OOPS! My apologies then! ;-) So, I'll give it a whirl, but why -1?
-
[Solved] Multiple Loop in WP for 404page, want full list of posts (not first 10 only)
Bob, But I want the COMPLETE list of posts - not just 10! Chris, LOL! 1 post is even sillier!
-
Dynamically updating a non WP page with WP content?
http://css-tricks.com/forums/viewtopic.php?f=2&t=900 here you go, found it for you. Be sure to thank Ikthius!
-
Dynamically updating a non WP page with WP content?
Yes, it can be done without using simple pie / rss. I do this on my site: see krowchukdressage.com if this is what you wish to accomplish, it sounds like it to me, then do a search on my name here. The secret was shared with me last year by anothe…
-
Styling a contact form - not quite right.
Wufoo looks cool BUT I have this project done and it functions, there is just that one niggling thing... for the life of me I can't figure out why that particular label is askew. I think the validate script creates it? I don't know a thi…
-
Calling pages from wordpress
Wow That's cool! I feel like I have actually finally contributed something back to the community! :P
-
[Solved] WordPress Conditional Statement - Mini Loop Help!
"AshtonSanders" said:It should work with any of these. I have had similar trouble with this is_page() function before and I just had to fiddle with it until it worked. So that's what I recommend... lol Ain't that the truth... I…
-
[Solved] WordPress Conditional Statement - Mini Loop Help!
Hey Ashton, Yes, always single, regular up/down quotes wrapping page name, or slug, or ID. But, should it not work with any of these, the same?
-
[Solved] WordPress Conditional Statement - Mini Loop Help!
Hey Ashton, Yeah, I tried page name, slug and ID# as I understand all 3 should work. I focused on that first too as a simple typo would break it. I do believe it is the conditional statement though. I tried the mini loops without the if statement a…
-
[Solved] WordPress Conditional Statement - Mini Loop Help!
Hey Ashton, Is the header, footer and sidebar showing up? Yep, the page loads as if nothing has changed. I made sure to disable cache when testing this... What is the name of that file? (index.php?) It is my page.php Notes: I have a number of …
-
[Solved] WordPress Conditional Statement - Mini Loop Help!
Hey Ashton, Ha! That might have helped huh? Sorry... Nothing is being displayed. It is like the code isn't even there. I have triple checked all of the page and cat names to make sure this wasn't the issue. The mini loops should work, be…
-
Calling pages from wordpress
Sounds like you want to create a custom page template, and then create a "Contact" page and select the template from the pop up selector in your write panel.. an example... // place your content here // if you need a sidebar on thi…
-
WP conditional tags and mini loop on pages
Yeah, you know the codex is a wonderful place and full of information that makes the assumption you know what you are doing. ;-) For those of us trying to learn it can be frustrating though. I did go through that info a month ago, tried to use it…