[wp-hackers] Finding wordpress documentation relating to the
core code.
Ryan Boren
ryan at boren.nu
Thu Aug 24 17:03:37 GMT 2006
paul booker wrote:
> Hello Again,
>
> What i would like to do is to understand how the initial wordpress page is
> constructed when you load wordpress into your browser and in particular how
> the individual posts rendered on this page
> are constructed and how that may be modified within the core to include the
> name of the author against each individual posts.
>
> To do this i need to know more about architecture at this stage i guess
> and
> not what intefaces are defined by the wordpress api
Here's the basic rundown.
After all of the libs are loaded, wp() is called. This parses the
incoming query, sets up the environment, and handles permalinks. After
that the template loader is called. The template loader loads specific
theme templates based on the parsed query. All presentational stuff is
done in the theme templates. This includes how individual posts are
rendered. So, you probably just need to look over the theme development
docs.
http://codex.wordpress.org/Theme_Development
Ryan
More information about the wp-hackers
mailing list