I'm using wp for an internal project to manage lots of content and then displaying it in a "bare" template;
In essence all I want is to display the basic html components that make up the page - like below.
`<html>
<head>
<meta name="description" content="The Description" />
<meta name="keywords" content="The keywords" />
<title> The Ttitle</title>
</head>
<body>
The Body...
</body>
</html>'
I still want to display some of the elements that are written by the wp_head function, but not all of them - how can I strip the ones I don;t want out? like rss, robots, generator, etc...
Any advice would be appreciated.