iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 1.5 Page Functionality CategoriesJust a thought, and probably wrong, but what is wrong with just linking to …/archives/category/whatever ? and manging it through the links manager. On my blog that would seem a simple way to get a ‘page’ that lists just one category. I know the URI isn’t as nice, but it is still comprehesible.
Forum: Fixing WordPress
In reply to: Big problem with internet explorerSee bug 904: http://mosquito.wordpress.org/view.php?id=904
Forum: Fixing WordPress
In reply to: Localisation of the new “default” (aka kubrick) theme?These might help:
http://wordpress.org/support/topic/13429#post-86487
http://wordpress.org/support/topic/25421#post-142964
and there is also http://wordpress.de/Forum: Fixing WordPress
In reply to: Article Summary on Main blog page?The excerpt reloaded plugin can do this (and more too):
http://guff.szub.net/the-excerpt-reloadedForum: Fixing WordPress
In reply to: All the post from a certain authorI would guess that the
<?php the_author_ID(); ?>is causing the problem. As far as I know you need the ID number of the author here.
There may be a way to pass the the_author_ID value but I don’t know it. Try searching the codex on ‘pass parameters to tag’, or there will probably be someone else along who knows.If you are using WP (created) pages, rather that xx.php pages, you will also need a runphp type plugin.
Forum: Fixing WordPress
In reply to: Heelppp!! cant post pictures with my blogI see a man on a motorbike! Glad you have got it working at last.
Forum: Fixing WordPress
In reply to: Heelppp!! cant post pictures with my blogWhat is the value of “URI of this directory:”? It should probably be
http://philmaturano.com/blog/wp-images/I might suggest you make a directory called images and upload to that, just to keep your images separate from the WP program images.Forum: Fixing WordPress
In reply to: Heelppp!! cant post pictures with my blogThe ; is a bug that has been squashed since the initial release.
See http://mosquito.wordpress.org/view.php?id=888Forum: Fixing WordPress
In reply to: Heelppp!! cant post pictures with my blogI see the link on your blog (I couldn’t find it earlier). The IMG0005.JPG links to
.com/wp-images/IMG_0005.JPG
If I change it to .com/blog/wp-images/IMG_0005.JPG I see a picture of someone playing the drums.
I don’t know if there is a way to automatically add the /blog/ bit automatically with the plugin your are using.Forum: Fixing WordPress
In reply to: All the post from a certain authorsomething like:
Start of loop<?php if ( !(is_category(‘authorID’)) ) { ?>
loop stuff here
<?php } ?>
end loop`
Looking at the codex should help:
http://codex.wordpress.org/The_Loop
http://codex.wordpress.org/Conditional_tagsForum: Fixing WordPress
In reply to: All the post from a certain authorIf you used several author.php pages (author1.php, author2.php) you might be able to use the is_author conditional tag within the loop to generate a list of posts.
Or, the customisable post listings plugin has an author function:
http://www.coffee2code.com/archives/2004/08/27/plugin-customizable-post-listings/Forum: Fixing WordPress
In reply to: Delay posts cannot send ping?Forum: Fixing WordPress
In reply to: Heelppp!! cant post pictures with my blogMaybe the permissions on your images or image folder? Can you link to one of your attempted picture posts – It might help find the problem.
Forum: Fixing WordPress
In reply to: single category view – date and order questionsHave a look at the perpage plugin: http://rephrase.net/miscellany/05/perpage.phps you should be able to tack the
order=...bit from some of the lines onto the category section.Forum: Everything else WordPress
In reply to: Levelhttp://codex.wordpress.org/User_levels
The codex has lots of other answers too 🙂