Skip to content
View izzygld's full-sized avatar
❤️
it's nice to be important but it's important to be nice. 🤓
❤️
it's nice to be important but it's important to be nice. 🤓
Block or Report

Block or report izzygld

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
izzygld/README.md

Howdy 👋

I'm a web designer and developer.

As a front end developer, my passion and love is to creating beautiful and easy to read web pages. With the world proceeding at such an alarming rate. the demand for dynamic and next generation website building platform is at a high, especially when it will be used by millions of people around the world.

I'm currently a Senior Frontend Developer at OU.

Specialties: VueJs, GraphQL, Wordpress (wp-graghql ❤️), JavaScript, HTML, CSS.

Moto: Always gets the job done!

Click to view some of my work

izzygld's Github Stats

izzygld's Github Stats

Pinned

  1. wp-graphql-google-schema wp-graphql-google-schema Public

    Integrating Google Schema within wp-graphql (jsonld)

    Vue 4 1

  2. template-wp-vue-webpack template-wp-vue-webpack Public

    A modern starter theme for Wordpress which uses Vue 2, Vuex, Vue-router and Webpack 2

    PHP 1

  3. Adding a “show html” button in Quil... Adding a “show html” button in Quill (Wysiwyg).
    1
    <template>
    2
      <div>
    3
        <vue-editor v-model="content" ref="editor" :editor-options="toolbarOptions" @text-change="updateValue" useCustomImageHandler @imageAdded="uploadImage"></vue-editor>
    4
      </div>
    5
    </template>
  4. Wp Graphql Vue Pagination Wp Graphql Vue Pagination
    1
    1. Regular post query with pagination fields
    2
    2. include the Pagination Component
    3
    3. The actual pagination.
    4
    
                  
    5
    ----------------
  5. acf gallery images resolver acf gallery images resolver
    1
    add_filter('graphql_post_fields', function($fields) {
    2
        $fields['post_images'] = [
    3
            'type' => \WPGraphQL\Types::list_of(\WPGraphQL\Types::post_object('attachment')),
    4
            'description' => __('Images on posts', 'mostly plants'),
    5
            'resolve' => function(\WP_Post $post) {
  6. Add: SEO Meta Fields WP-Graphql shema Add: SEO Meta Fields WP-Graphql shema
    1
    add_action( 'wp_loaded', 'wpse290170_wp_loaded' );
    2
    
                  
    3
    function wpse290170_wp_loaded() {
    4
      $types = get_post_types( [
    5
          'public'   => true