I remember seeing a plugin for WordPress that allowed you to have blocks of content within pages, but can't remember the name. Anyone know which one it is?
+1
A:
If you just need something simple you can use conditional statements to add blocks of content to specific or all pages:
if ( is_page('42') ) {
// here goes the code
}
This will insert the code at page 42.
Mircea
2010-09-08 12:14:57