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 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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Hi there 👋

I’m a Senior Frontend Developer with a strong focus on building scalable, user-friendly, and maintainable web applications. I care deeply about clean UI, readable code, and creating experiences that work smoothly for real users at scale.

I’ve spent years working on production systems used by large audiences, where performance, reliability, and clarity actually matter. I enjoy turning complex requirements into simple, elegant interfaces—and making sure things work just as well behind the scenes.

I’m currently a Senior Frontend Developer at OU, working across modern frontend stacks and WordPress-based platforms.

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

Moto: Always gets the job done!

Click to view some of my work

"Buy Me A Coffee"

izzygld's Github Stats

Pinned Loading

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

    Integrating Google Schema within wp-graphql (jsonld)

    Vue 9 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 2

  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