 | ./
| |
 | wp-admin/
| |
 | wp-content/
| |
 | wp-includes/
| |
 | index.php [source] [18 lines] | Front to the WordPress application. This file doesn't do anything, but loads wp-blog-header.php which does and tells WordPress to load the theme. |
 | license.txt [source] [280 lines] | |
 | readme.html [source] [91 lines] | |
 | wp-app.php [source] [1185 lines] | Atom Publishing Protocol support for WordPress |
 | wp-atom.php [source] [21 lines] | Outputs the Atom feed XML format using the feed-atom.php file in wp-includes folder. This file only sets the feed format and includes the feed-atom.php. |
 | wp-blog-header.php [source] [20 lines] | Loads the WordPress environment and template. |
 | wp-comments-post.php [source] [85 lines] | Handles Comment Post to WordPress and prevents duplicate comment posting. |
 | wp-commentsrss2.php [source] [23 lines] | Outputs the RSS2 XML format comment feed using the feed-rss2.php file in wp-includes folder. This file only sets the feed format and includes the feed-rss2-comments.php. |
 | wp-config-sample.php [source] [31 lines] | |
 | wp-cron.php [source] [53 lines] | WordPress Cron Implementation for hosts, which do not offer CRON or for which the user has not setup a CRON job pointing to this file. The HTTP request to this file will not slow down the visitor who happens to visit when the cron job is needed to run. |
 | wp-feed.php [source] [24 lines] | Outputs the RSS2 feed XML format. This file is a shortcut or compatibility layer for easily finding the RSS feed for the site. It loads WordPress using the wp-blog-header.php file and running do_feed() function. |
 | wp-links-opml.php [source] [65 lines] | Outputs the OPML XML format for getting the links defined in the link administration. This can be used to export links from one blog over to another. Links aren't exported by the WordPress export, so this file handles that. |
 | wp-load.php [source] [50 lines] | Bootstrap file for setting the ABSPATH constant and loading the wp-config.php file. The wp-config.php file will then load the wp-settings.php file, which will then set up the WordPress environment. |
 | wp-login.php [source] [501 lines] | WordPress User Page Handles authentication, registering, resetting passwords, forgot password, and other user handling. |
 | wp-mail.php [source] [206 lines] | Gets the email message from the user's mailbox to add as a WordPress post. Will only run if this is setup and enabled. |
 | wp-pass.php [source] [19 lines] | Creates the password cookie and redirects back to where the visitor was before. |
 | wp-rdf.php [source] [23 lines] | Outputs the RDF feed using the feed-rdf.php file in wp-includes folder. |
 | wp-register.php [source] [15 lines] | Used to be the page which displayed the registration form. |
 | wp-rss.php [source] [23 lines] | Outputs the RSS feed RDF format using the feed-rss.php file in wp-includes folder. |
 | wp-rss2.php [source] [21 lines] | Outputs the RSS2 feed XML format using the feed-rss2.php file in wp-includes folder. This file only sets the feed format and includes the feed-rss2.php. |
 | wp-settings.php [source] [555 lines] | Used to setup and fix common variables and include the WordPress procedural and class library. You should not have to change this file and allows for some configuration in wp-config.php. |
 | wp-trackback.php [source] [111 lines] | Handle Trackbacks and Pingbacks sent to WordPress |
 | xmlrpc.php [source] [2643 lines] | XML-RPC protocol support for WordPress |