Skip to content
View MelMacaluso's full-sized avatar
🌝
You are very curious, aren't ya?
🌝
You are very curious, aren't ya?
Block or Report

Block or report MelMacaluso

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

Pinned

  1. gatsby-plugin-og-images gatsby-plugin-og-images Public

    JavaScript 6 3

  2. xavitar xavitar Public

    Xavitar is an interactive shell script that, according to your provided parameters and the credentials you fill in, automates the creation of a domain through Laravel Forge, a VCS provider and Clou…

    Shell 2 1

  3. vue-modal vue-modal Public

    Reusable Modal component, supports own custom HTML, text and classes.

    JavaScript 29 9

  4. Automatically expose all the ACF fie... Automatically expose all the ACF fields to the Wordpress REST API in Pages and in your custom post types.
    1
    <?php
    2
        function create_ACF_meta_in_REST() {
    3
            $postypes_to_exclude = ['acf-field-group','acf-field'];
    4
            $extra_postypes_to_include = ["page"];
    5
            $post_types = array_diff(get_post_types(["_builtin" => false], 'names'),$postypes_to_exclude);