Is there a top-down documentation for WordPress?

WordPress is very… utilitarian I suppose. People tend to use and know as much as they need to get things done. Curiously that tends to exclude the low level core load process. It doesn’t help the situation that (unlike modern frameworks) WordPress doesn’t use a complete routing logic for everything. Front-end is governed by rewrite/permalinks, … Read more

What’s the difference between the capability remove_users and delete_users?

The difference is really no difference in regular (single install) WordPress. It’s in a multisite install (network) where there is a difference. In multisite, only a Super Admin (who can manage everything on the network) has delete_users capability, while an “admin” (who would own/manage a single site) can remove_users from their site, but cannot delete … Read more

What are all the query parameters for getEntityRecords?

If you look into the source code for getEntityRecords, you’ll see that the the core/data library creates entities using the WordPress API in entities.js. So you can use any parameter available in the REST API. Here are options for posts: context page per_page search after author author_exclude before exclude include offset order orderby slug status … Read more

Local copy of WordPress Codex?

I Use a much faster and easier way to create a local copy of the codex without installing a local server and without installing copy of mediawiki, its called ScrapBook which is a Firefox extension, that helps you to save Web pages and manage the collection. Key features are lightness, speed, accuracy and multi-language support. … Read more

Documentation for using JavaScript code inside a PDF file

Probably you are looking for JavaScriptâ„¢ for Acrobat® API Reference. This reference should be the most complete. But, as @Orbling said, not all PDF viewers might support all of the API. EDIT: It turns out there are newer versions of the reference in Acrobat SDK (thanks to @jss). Acrobat Developer Center contains links to different versions of … Read more

Create html documentation for C# code

Doxygen or Sandcastle help file builder are the primary tools that will extract XML documentation into HTML (and other forms) of external documentation. Note that you can combine these documentation exporters with documentation generators – as you’ve discovered, Resharper has some rudimentary helpers, but there are also much more advanced tools to do this specific … Read more