PHP code example of matepaiva / wp-graphql-crb
1. Go to this page and download the library: Download matepaiva/wp-graphql-crb library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
matepaiva / wp-graphql-crb example snippets
use WpGraphQLCrb\Container as WpGraphQLCrbContainer;
use Carbon_Fields\Container\Container;
use Carbon_Fields\Field\Field;
WpGraphQLCrbContainer::register(
Container::make('term_meta', __('Custom Data', 'app'))
->where('term_taxonomy', '=', 'category')
->add_fields([
Field::make('image', 'crb_img')
->set_value_type('url')
])
);