Mike Schinkel
Mike Schinkel
@clubdeuce I had assumed that it would handle the 90% case and for the regular case you would just do it the regular WP way. Of course `self::add_class_action()` is not...
@clubdeuce We can leave this ticket open and mull over it to see if maybe we run into more frequent use-cases to need it.
This is being handled with an error message in `0.13.0`. Might be able to avoid needing the class-specific `make_new_item()` in `0.14.0`.
This is in development where module and global partials still need to be tested but the initial work has been committed to branch `develop`.
Hey Mark! Thanks for checking this out. So glad to have a first external comment on an issue. > Instead of `get_example($arg)`, why not just make "example" a value of...
P.S. there is nothing that would keep us from implementing a generic `->get( $field_name, $args )` method because WPLib has all it needs to make that work. Really the two...
@clubdeuce I need a lot more context than that to understand the issue. Line `1706` is in `trigger_error()`. What was the call stack?
@clubdeuce So somehow the `P.....G_Firm()` class is getting a `$post_type=='post'` object. Call stack does not give enough info. What code is generating the object you are using?
@clubdeuce How about start with a project-specific MetaBox module? That is the way that I have been thinking about how things would start before adding them to WPLib proper. ---...
@clubdeuce Modules **MUST** be in either `WP_CONTENT_DIR . '/{app}/modules/` or in `vendor/{team}/{app}/modules/`. So we would need to either map that in the Composer file or include some kind of extension....