Hi,
Thanks for the reply. That’s half the idea

Here’s an example that I should have provided. The header.php file in a WP theme that I happen to have installed has the following lines :
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="description" content="<?php bloginfo('description') ?>" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/960gs/960.css" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
Now, I know it’s not *that* hard to go through and figure out what is really being referenced, at least in MODx terms and in this example.
But Wordpress has a number of other template tags
http://codex.wordpress.org/Template_Tags
so I thought that it might be handy if there were a cheatsheet available that said something to the effect of
<?php bloginfo('charset'); ?> is equal to [(modx_charset)]
Certainly, some things won’t have a mapping. But for those that do it would just make understanding what’s going on a bit easier.