ju1ius
ju1ius
FYI, the `alias` function is also missing...
OK, so I took some time to debug this. Turns out I had some copy/pasted mappings leftovers, and I think I found the cause: ```lua require('which-key').register({ ['p'] = {'"+p', 'Paste...
> I hope that helps! Well it definitely helps. I had initially set it to run every 15mn (same as wp-cron), but from your answer I infer that this is...
Hi, coming in from #833. > If the problem is only in the error handling in PHP5.6, then it can be processed via a shutdown callback. > 1. Register an...
Hi, I just encountered an _N+1 queries_ issue, and I found this thread while searching for a solution. I was trying to load 250 custom posts w/ 8 custom fields......
> This is good stuff. I'm wondering if you have time to do a PR? Sure, I could do that. I'm just wondering if the «hit the database every time»...
Hi, I just got into the same issue and found out that WPML considers all meta fields starting with an underscore (`_`) as « system fields » and thus excludes...
It gets even worse: for a `term_meta` field, WPML synchronizes metadata during the `edited_term` hook, and carbon-fields during the `edited_{$taxonomy}` hook. Since `edited_term` fires _before_ `edited_{$taxonomy}`, WPML synchronizes metadata _before_...
So this is what one needs to do in order to make `term_meta` fields properly synchronize between languages: ```php add_action('carbon_fields_register_fields', function() { $fieldTax = 'some_taxonomy'; $container = \Carbon_Fields\Container::make('term_meta', 'Foo') ->where('term_taxonomy',...
> Can you give an example use-case that you have for them? For example `gst_element_class_add_pad_template` is required to implement custom Gstreamer bins with dynamic proxy pads... More generally I believe...