We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
post_meta container is used in example where term_meta should be used
post_meta
term_meta
// Display container on Book Category taxonomy Container::make( 'post_meta', __( 'Book Category Data' ) ) ->where( 'term_taxonomy', '=', 'crb_book_category' ) ->add_fields( array( .. ) );
Should be
// Display container on Book Category taxonomy Container::make( 'term_meta', __( 'Book Category Data' ) ) ->where( 'term_taxonomy', '=', 'crb_book_category' ) ->add_fields( array( .. ) );
https://docs.carbonfields.net/#/containers/condition-types?id=term_meta-conditions
The text was updated successfully, but these errors were encountered:
No branches or pull requests
post_meta
container is used in example whereterm_meta
should be usedShould be
https://docs.carbonfields.net/#/containers/condition-types?id=term_meta-conditions
The text was updated successfully, but these errors were encountered: