- Index.php:WordPress core index file, which is the blog output file.
- License.txt:WordPress GPL license file.
- My-hacks.php: Defines an append program that is processed before the blog output. The default installation does not have this file, but if it does, it will be managed by the page reference.
- Readme.html:WordPress installation Introduction.
- wp-atom.php: Output atom information aggregation content.
- wp-blog-header.php: Define the blog page display content according to the blog parameters.
- wp-cron.php
- Wp-comments-post.php: Receive comments and add them to the database.
- wp-commentsrss2.php: The aggregated content of RSS2 information used to generate log comments.
- wp-config-sample.php: A sample configuration file that connects WordPress to the MySQL database.
- Wp-config.php: This is the configuration file that really connects WordPress to the MySQL database. Although it is not included in the default installation, the file is required for WordPress to run, so the user needs to edit the file to change the relevant settings.
- Wp-feed.php: Defines the feed type as requested and returns the feed request file.
- wp-links-opml.php: Generate a list of links in OPML format (added via the WordPress admin menu).
- wp-login.php: Defines the login page for registered users.
- wp-mail.php: Used to get posts submitted via mail. The URL of this file is usually added to the cron task, so cron periodically retrieves the file and receives the mail log.
- wp-pass.php: Review passwords for password-protected articles and display protected articles.
- wp-rdf.php: Generates RDF information aggregation content.
- Wp-register.php: Allows new users to register user names through online forms.
- wp-rss.php: Generate RSS Information aggregation content.
- wp-rss2.php: Generates RSS2 information aggregation content.
- Wp-settings.php: Run the pre-execution routine, including checking that the installation is correct, using auxiliary functions, applying the user plug-in, initializing the execution timer, and so on.
- Wp-trackback.php: Handles trackback requests.
- Wp.php: Displays a simple template for the blog log. There's nothing magical about it, but it includes some index.php content.
- Xmlrpc.php: Handles XMLRPC requests. Users can publish articles without the built-in Web management interface.
Bill: WordPress root directory (root)