From 9b48a9d72316a35354767801661fe7a9baa7be8c Mon Sep 17 00:00:00 2001
From: saxmatt
-0.72
Weblog / News Publishing Tool
Requirements - Installation - Template(s) - Query String Usage - XML-RPC (Blogging APIs) - Post Via Email - Notes
The link will help promote WordPress and is its only mean of promotion.
WordPress is built from b2, which comes from Michel V. We wouldn't be here without him, so why don't you grab him something from his wishlist? You can also support the WordPress developers.
-This document is currently beta stage, we'll be updating it extensively as WordPress matures. There is also online documentation under development.
+This document is currently beta stage, we'll be updating it extensively as WordPress matures. There is also online documentation under development, as well as a wiki.
/*
or //
weblogs.com.changes.cache
file. /*
or //
.) Save this file as wp-config.php.weblogs.com.changes.cache
file. wp-config.php
as indicated in the "5-minute install" section.wp-config.php
.<?php my_tag("first param", "second param"); ?>
<?php my_tag("", "second param"); ?>
<?php the_title("<h1>", "</h1>"); ?>
would display <h1>title of the post</h1> only if the post has a title << Previous Page :: Next Page >>
<form action="<?php echo $PHP_SELF ?>" method="get">
<?php dropdown_cats() ?>
<input type="submit" name="submit" value="view" />
</form>
In wp-comments.php, like in the main template file, please keep the first PHP lines, the "while" lines, and the "}" lines.
You can modify the form, but do not remove "<?php echo ... ?>" and all the name="..." attributes.
+To include your archives:
-<?php get_archives() ?>
+WordPress relies a lot on the query string, these variables passed with the URL (note: to pass variables in the querystring, preceed the first variable name with a '?' question mark and every other variables with a '&' sign.)
+WordPress relies a lot on the query string. These variables passed with the URL (note: to pass variables in the querystring, preceed the first variable name with a '?' question mark and every other variables with a '&' sign.)
Most of the time you won't have to do anything about it, but if you want to know how it works, it's here:
How to use the query string:
index.php?m=200107 will display the month of July 2001.
@@ -621,9 +703,9 @@ Extended entries in the Notes:On multi-user:
-New users can register with wp-register.php
. Then you (as an admin) click the "+" next to their name on the Team page in admin to upgrade their level to 1 or more, so they can post. If you don't want an user to post anymore, just click "-" until their level is 0.
New users can register with wp-register.php. Then you (as an admin) click the "+" next to their name on the Team page in admin to upgrade their level to 1 or more, so they can post. If you don't want an user to post anymore, just click "-" until their level is 0.
Note: you can now disable users registration altogether from the config file.
-Levels:
+User Levels: