Ok, my bad, I was stupid:
The options should be wrapped in data array:
'template' => [
['acf/my-block', [
'data' => [
'name' => 'default name',
]
]]
];
I will still leave the post here so anyone with similar problem could benefit from it.
I also want to request this feature. Also having a naming convention and it looks kinda ugly on the backend.
I have the same problem:
The meta query is:
'meta_query' => [
'relation' => 'OR',
[
'key' => 'font_hide_page',
'value' => [1],
'compare' => 'NOT IN',
],
[
'key' => 'font_hide_page',
'compare' => 'NOT EXISTS',
]
],
The problem is that the query is very slow ( takes ~7s per query ). If I remove the meta query, the same query executes around than 0.6ms. Can anybody help with optimised way of doing such queries?
If somebody is interested in creating simple menus, here is simple example plugin I’ve put on https://gist.github.com/panayotov/37c49294c59021f22d353b27ccd525bb
And link to some article to create these custom menus:
https://www.johnmorrisonline.com/how-to-add-a-fully-functional-custom-meta-box-to-wordpress-navigation-menus/
https://kinsta.com/blog/wordpress-custom-menu/
I hope it can help somebody.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.