amory
Forum Replies Created
-
Forum: Plugins
In reply to: Does anyone have group-archives-by-year plugin?i would also like it if anyone has a copy
Forum: Themes and Templates
In reply to: Admin Themesare you simply trying to restyle the appearence of the admin area, or do you want to add/remove certain sections that are already there?
Forum: Themes and Templates
In reply to: Admin Theme Question For DevelopersBy no means is it off limits, but I didn’t design the changes that I made. I thought that it might be nice to have the admin section resemble the wordpress look found here to solidify the wordpres appearence connection for myself. Thus I wanted to have Matt’s permission before posting it.
Forum: Themes and Templates
In reply to: Highlighting a tabit looks like it has to appear before the
<html>tag, and i don’t think you can have an if/then function at the top of your document that depends on a variable later on in your document…let me experiment..Forum: Themes and Templates
In reply to: Highlighting a tablooks like you can only post content, meaning nothing in the head. my only suggestion would be then to set up a different template for each section in your menu (is that possible?) or to figure out how to pass the variable through a custom field. It took me awhile to get it to work without wordpress involved, so you may not get it for awhile…
Forum: Plugins
In reply to: What Plugin gives you…….Thanks for the comments. I didn’t mean to sound harsh, bad morning…
Forum: Themes and Templates
In reply to: Admin Theme Question For DevelopersThanks Podz. I contacted him from his website…should have though of that sooner.
Forum: Themes and Templates
In reply to: Highlighting a tabI haven’t done anything with pages yet for 1.5 so I don’t know if publishing one creates a whole new page, or if it simply provides content to be used withiin a template. You could try adding tthe $thisPage within the content, otherwise you could write a series of if/then statements in the head of the page template and set the variable within the content….will explain when I have a bit more time
Forum: Plugins
In reply to: What Plugin gives you…….go to the page suggested and read how to use the function….
<?php comments_number('no responses','one response','% responses');Â ?>
thus if you want just the number you would input it like so:
<?php comments_number('0','1','%');Â ?>Forum: Themes and Templates
In reply to: Highlighting a tabForum: Themes and Templates
In reply to: Admin Theme Question For DevelopersKafkaesqui has it right, i don’t want to post it and piss people off. If the default admin look suits someone than that’s awesome, but if you want it to look a little spiffed up, I just wanted to know if it would be cool or not to post what changes i’ve made. (I take no credit for the design.)
Forum: Everything else WordPress
In reply to: Flash full site with WP function to updatelike this http://ww.wp.xz.cn/support/topic.php?id=20251 ?
Forum: Fixing WordPress
In reply to: Hierachy of categoriesset posts_per_page equal to -1
Forum: Fixing WordPress
In reply to: is $single or the_title depreciated in 1.5?Thanks for the reply. It looks like your code is for the post itself (inside the loop) and i was referencing the
<title>html tag. Anyway I forgot about the codex…sorry…after a little searching it looks like what i need is<?php single_post_title(); ?>Forum: Plugins
In reply to: A small problem with Nicer ArchiveWell from viewing the source code, it appears there is quite a bit of code before the doctype /head/start of document. Try putting that (your menu and header) below the
<body>tag and see if that helps.