-
Notifications
You must be signed in to change notification settings - Fork 16
Home
I upgraded to wordpress version 5 and my site broke. Why?
The function has_block()
is now defined by wordpress core:
https://developer.wordpress.org/reference/functions/has_block/
If you really need this plugin to work, rename has_block
or comment it out if you are not using it. See assets/inc/template-tags.php
My blocks suddenly disappeared! Where is my content?
You may have renamed or removed some blocks, or they just stopped working because of another exception. Anyway, go to Settings > Multiple content blocks and check "Show inactive blocks".
This allows you to retrieve content of the blocks that became inactive for all possible reasons.
I get the following error: "Your server doesn't allow remote HTTP requests using wp_remote_get. You will have to visit this page manually to update which blocks are used on each page.". What should I do?
Multiple content blocks checks to see what blocks you want to use by visiting that page and initializing what blocks are requested. Because you just visit the page in the admin panel, it makes an HTTP request to visit the front end programmatically. When something went wrong with this, it returns the error.
Fix this by going to Settings > Multiple content blocks and disabling HTTP requests. You will have to visit a page manually to refresh the blocks.
For more information about the WordPress function we use to do this: http://codex.wordpress.org/Function_API/wp_remote_get.