dbunit16
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Incomplete Posts – Please help!This is actually happing in the admin, not on the site. I can see the post disappear after I hit Publish, half of it is gone out of the text box.
So i waited, and now it worked! Did nothing differently… weird!
Forum: Fixing WordPress
In reply to: Help with Tags (wp_list_bookmarks)WoW! It must have been late. I was trying to do it wp_list_bookmarks rather than get_tag_cloud…. found my answer! Thanks for trying, but I know you didn’t have a chance on this one! haha
<?php wp_tag_cloud(‘smallest=8&largest=22&number=30&orderby=count’); ?>
Forum: Fixing WordPress
In reply to: Help with Tags (wp_list_bookmarks)Thanks, but I’ve been there. That’s where I got my code, but it doesn’t seem to be working! Is something wrong with my code?
Thanks,
Jon
Forum: Fixing WordPress
In reply to: Excluding the First Postnevermind! I will just change it to a very large number! *thinking caps work great!* haha
Forum: Fixing WordPress
In reply to: Excluding the First Postwould this be valid: (‘showposts=all&offset=6’)
I want to create a More page that lists the rest of the articles… seems like it might only be showing 1 though… There even though there are 8 articles in the db, so it should show 2…
Forum: Fixing WordPress
In reply to: Excluding the First PostDoesn’t seem to work, I just get the most recent posts from all categories… just like the main page…
Forum: Fixing WordPress
In reply to: Excluding the First PostThanks Equal… I still need to do two loops on the normal category page though… and still have the offset 1….
Forum: Fixing WordPress
In reply to: Excluding the First PostLet me explain further…
I have created custom templates for the main categories of my site:
category-11.php – Blades
category-16.php – Storage
etc…I used multiple loops on these pages to display the first story differently than the next 5.
My issue is, on these pages I’m calling out the category here:
?php query_posts(‘category_name=storage&showposts=1&offset=0’);So that it knows where to pull from.
Now, I am working on category.php, so that any other categories that don’t have a custom template would use this one. Problem is,
‘category_name=storage&showposts=1&offset=0′)What would I put there so that it detects the category automatically? If I remove the above bolded part completely, then it draws from all categories, instead of a particular one.
Hope that’s clearer!
Thank you!
Forum: Fixing WordPress
In reply to: Excluding the First PostYou are awesome! thank you!
One more question…
<?php query_posts(‘category_name=storage&showposts=1&offset=0’);
I have category_name=storage , how do I can this is that articles will pulled the correct category?
This one is for my category.php page. So i need it to automatically detect the category.
Thanks,
Jon
Forum: Fixing WordPress
In reply to: Excluding the First PostPlease…. anyone?
Forum: Fixing WordPress
In reply to: Full Text RSS WILL NOT WORK!!!!I am also having the same problem… I’ve never used feed burner…
http://embeddedcomputingsystems.com/feed
Works in Firefox, doesn’t in IE 6, or in Chrome…
Forum: Fixing WordPress
In reply to: Search TemplateHow would I call out the Category name on the category.php template?
Forum: Fixing WordPress
In reply to: Search TemplateWorks! Thank you!
Forum: Fixing WordPress
In reply to: single.php and Categoriesbrackets weren’t closed! Thank you for your help!
iridiaz, that in_category was key! Thank you!
Forum: Fixing WordPress
In reply to: single.php and CategoriesI have tried the above code
<?php if (is_category(11)) { // looking for category 11 posts include(TEMPLATEPATH . '/single11.php'); elseif (is_category(9)) { // looking for category 2 posts include(TEMPLATEPATH . '/single2.php'); elseif (is_category(9)) { // looking for category 3 posts include(TEMPLATEPATH . '/single3.php'); elseif (is_category(9)) { // looking for category 4 posts include(TEMPLATEPATH . '/single4.php'); } else { // put this on every other category post include(TEMPLATEPATH . '/singlegeneral.php'); } ?>But am getting this error “Parse error: parse error, unexpected T_ELSEIF in /home/content/a/z/e/azelasko/html/wp-content/themes/embedded411/single.php on line 5”