navid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: delay/timeout after submitting post?Resurrecting threads from the old is always good because it proves that the poster actually did a “search” before querying the elite intellectuals whom scour these forums.
Forum: Installing WordPress
In reply to: Subdomain installation questionI am not sure I understand you exactly but it should be noted that subdomains ARE sudirectories of the root. Thats how they work.
Therefore, mydomain.com/subdomain IS subdomain.mydomain.com. They are the exact same thing.
Forum: Themes and Templates
In reply to: Image in “the little box”You can simply drop an:
<img src="..." alt="..." />in your little sidebox div. That’s it.Do note that the ALT is necessary to validate and serves an “alternative” to people who cannot see the images.
Forum: Fixing WordPress
In reply to: (wp_)list_cats children not indentedHaha. Oh Kristin, whenever these sort of things happen to me I just calmly repeat “at least its working now. at least its working now.” And trust me, they happen more often then I’d like to admit.
I am glad it works! And thanks for the kind comments =)
Forum: Fixing WordPress
In reply to: (wp_)list_cats children not indentedA screen capture and/or a link would be ideal. But in the meantime, and I should have said this earlier… are you enclosing it in
<ul>?As in:
<ul>
<?php wp_list_cats(); ?>
</ul>If you’re using my wp-exec plugin in a post or page (not inside a .php) you would include the following line:
<ul>
<exec type="categories" />
</ul>Forum: Plugins
In reply to: Public Release: wp-execI should probably have mentioned that when you do use:
<ul>
<exec type="archives" />
</ul>The following list is generated:
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003
- August 2003
Of course, the number of months depend on your blog. Furthermore, you can add additional parameters such as:
<ul>
<exec type="archives" count="true" />
</ul>outputs:
- February 2005 (4)
- January 2005 (21)
- December 2004 (23)
- November 2004 (13)
- October 2004 (16)
- September 2004 (24)
- August 2004 (12)
- July 2004 (4)
- June 2004 (5)
- May 2004 (4)
- April 2004 (7)
- March 2004 (22)
- February 2004 (6)
- January 2004 (6)
- December 2003 (18)
- November 2003 (15)
- October 2003 (19)
- September 2003 (15)
- August 2003 (5)
or even
<ul>
<exec type="archives" count="true" limit="7" />
</ul>- February 2005 (4)
- January 2005 (21)
- December 2004 (23)
- November 2004 (13)
- October 2004 (16)
- September 2004 (24)
- August 2004 (12)
I hope that makes everything very clear.
Forum: Fixing WordPress
In reply to: (wp_)list_cats children not indentedHey Kristin,
I am on the 01/31/05 nightly and it is being indented for me (http://www.navidazimi.com/archive/). But then again I am using the wp-exec plugin as a wrapper for wp_list_cats.
But try this:
<?php wp_list_cats(); ?>
This will take all the default variables… which includes indenting children. Let me know if that works. Thanks.
Navid.
Forum: Plugins
In reply to: Public Release: wp-execJinsan, check out http://www.navidazimi.com/archive/
The archives are outputted using:
<ul>
<exec type="archives" />
</ul>And thats what you see. Also, the same with categories.
This was developed “for” WP 1.5 but I am pretty sure it will work with WP 1.2.x but I have not tested it.
Forum: Fixing WordPress
In reply to: Exporting entriesWe won’t help you leave.
Just kidding.
You might want to check out RSS… and download an entire fat file of all your archives using RSS. And then importing the .xml. But I don’t know. I have never used MT.
Forum: Fixing WordPress
In reply to: One Post LoopSet up a counter variable like $counter = 1; outside of the loop. Then, in the loop, do a if( $counter == 1 ) and add the class to the post. Remember, in CSS, you can give tags several classes.
For example:
<div id="post434" class="bigborder lightbackground">....</div>while you can do:
#post434 { … }
.bigborder { … }
.lightbackground { … }I hope this helps.
Navid.
Forum: Plugins
In reply to: Invision Powered Plugin?It sounds like if you can access the “Stats” using PHP, you can then simply embed that inside your WordPress installation.
Forum: Fixing WordPress
In reply to: Can posts and pages be mixed?You may also want to look into “templates” for WP 1.5
Forum: Themes and Templates
In reply to: Tagline placement problemYou need to use CSS to change the styling. For example,
<div id=”slogan”>Barqs has bite.”</div>
#slogan
{
font-size: 10pt;
text-align: center;
color: #69c;
}You get the idea.
Forum: Fixing WordPress
In reply to: Onclick Backup question and user level?Why is your $user_level at 9? If you’re the administrator it should be 10, no?
Forum: Fixing WordPress
In reply to: wp_lists – Navid’s great pluginHi maribun, I’m glad you’re enjoying the plugin. Adding the lists to your sidebar is exceptionally easy.
Do you see where you have the following in your sidebar?
<list id="2" />Simply replace it with:
<?php wplists_print_by_id(2); ?>And, similarly, where you have:
<list id="1" />Simply replace it with:
<?php wplists_print_by_id(1); ?>It should be that simple. There are additional parameters to those API functions so you can customize them to your liking. If you have any other problems please don’t hesitate to contact me. Also, please make sure you are running the latest version of the List Manager plugin (currently at v1.5).
Enjoy! Navid.