开发者

WordPress CMS Plugin

开发者 https://www.devze.com 2023-01-15 12:20 出处:网络
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 si

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)?

0

精彩评论

暂无评论...
验证码 换一张
取 消