views:

27

answers:

2

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
A: 

Would it be WP-Blocks, (just released in beta)?

Matt Gibson