WordPress CMS Plugin
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 on开发者_开发问答e it is?
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.
Would it be WP-Blocks, (just released in beta)?
精彩评论