Semantic Personal Publishing Platform
Welcome. WordPress is a very special project to me. Every developer and contributor adds something unique to the mix, and together we create something beautiful that I'm proud to be a part of. Thousands of hours have gone into WordPress, and we're dedicated to making it better every day. Thank you for making it part of your world.
— Matt Mullenweg
If you have any questions that aren't addressed in this document, please take advantage of WordPress' numerous online resources:
WordPress is the official continuation of b2/cafélog, which came from Michel V. The work has been continued by the WordPress developers. If you would like to support WordPress, please consider donating.
wp-config-sample.php
with a text editor like WordPad or similar and fill in your database connection detailswp-config.php
admin
and the password generated during the installation. You can then click on 'Profile' to change the password.Before you upgrade anything, make sure you have backup copies of any files you may have modified such as index.php
.
If you are coming from 1.0 or greater, your existing templates should work perfectly with just one change to the way you call comments. If you are coming from a version earlier than 1.0 you will need to modify your templates slightly. Use the default index.php
as your guide.
WordPress can import from a number of systems. First you need to get WordPress installed and working as described above.
The template tags are too numerous and flexible to adequetely document here, so please see our online documentation.
Themes are a new way to switch the look and function of your site with just a click. TODO
TODO
WordPress can be manipulated quite a bit through the query string. To pass variables in the querystring, proceed the first variable name with a '?' question mark and every other variables with a '&' sign. You may never use this, but it is useful to know.
index.php?m=200107 will display the month of July 2001.
index.php?m=20010701 will display all posts from July 1st, 2001.
index.php?w=20 will display the posts from the 20th week of the year, where January 1st is in the first week (according to PHP).
index.php?p=50 will display the post labeled #50 in the database.
index.php?s=blue+house will display the posts that match the search request "blue house".
index.php?cat=1 will display all posts that belong to category #1 (1 is the default). you can add/rename/delete categories from WordPress's interface.
index.php?author=1 will display all posts from the author #1
index.php?p=50&page=1 will display the first page of post #50. this, again, should be used only with p=, for individual entries.
You can also mix these variables, example: index.php?m=200107&s=hotdog will display the posts that match the search request "hotdog", but only in July 2001.
WordPress has an XMLRPC interface. We currently support the Blogger API, metaWeblog API, and the MovableType API.
The Blogger API has been completely emulated on WordPress, with some little differences:
If you use blogger.newPost, your post is submitted without title and in category #1.
However, you can type <title>my title</title>
and/or <category>2<category>
in the body of your post to make its title be 'my title' and its category be #2 (refer to your categories section to find out the ID numbers of the categories). WordPress would then delete that extra info from the body of your post once it is posted.
The metaWeblog and MovableType APIs are currently supported with the following exceptions:
Extended entries in the MovableType API are automatically converted to/from the WordPress <!--more-->
tag.
You can now post to your WordPress blog with tools like BlogBuddy, Bloggar, WapBlogger (post from your Wap cellphone!), Radio Userland (which means you can use Radio's email-to-blog feature), Zempt, NewzCrawler, and other tools that support the Blogging APIs! :)
Your XMLRPC server/path are as described here: if you login to WordPress on http://example.com/me/wp-login.php
, then you have:
http://example.com/
(some tools will just want the 'example.com' hostname part)/me/xmlrpc.php
http://example.com/me/xmlrpc.php
You can post from an email client! To set this up go to your "Writing" options screen and fill in the connection details for your secret POP3 account. Then you need to set up wp-mail.php
to execute periodically to check the mailbox for new posts. You can do it with Cron-jobs, or if your host doesn't support it you can look into the various website-monitoring services, and make them check your wp-mail.php
URL.
Posting is easy: Any email sent to the address you specify will be posted, with the subject as the title. It is best to keep the address dicrete. The script will delete emails that are successfully posted.
You may allow or disallow user registration in your General options. If "new users can blog" is disabled you must first raise the level of a newly registered user to allow them to post. Click the plus sign next to their name on the Users page.
Usually you want to have a team of level 1 users except for you.
WordPress is released under the GPL (see license.txt).