I hereby claim:
- I am jake-101 on github.
- I am jake101 (https://keybase.io/jake101) on keybase.
- I have a public key ASCpwtWTNPz-m2fb9fCDLoYVvx7eYlPG9lySqk89C_fGZAo
To claim this, I am signing this object:
| <template> | |
| <div class="reflow"> | |
| <transition | |
| name="expand" | |
| @enter="enter" | |
| @after-enter="afterEnter" | |
| @leave="leave" | |
| > | |
| <slot /> | |
| </transition> |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| add_action( 'graphql_register_types', function() { | |
| register_graphql_field( 'Product', 'tech_specs', [ | |
| 'type' => 'String', | |
| 'description' => __( 'tech specs', 'wp-graphql' ), | |
| 'resolve' => function( $post ) { | |
| $id = $post->ID; | |
| $specs = get_field( "tech_specs",$id); | |
| $enc = strip_tags($specs,"<p>,<br>,<ul>,<li>"); |