Skip to content
View angelorocha's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report angelorocha

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 Loading

  1. wpss-ultimate-user-management wpss-ultimate-user-management Public

    This plugin allows efficient management of users, roles and capabilities. Create, edit and delete user permissions faster and easier.

    SCSS 1

  2. Convert CSV file in array Convert CSV file in array
    1
    <?php
    2
    /**
    3
     * Convert CSV file in Array
    4
     *
    5
     * @param string $file_csv CSV file path
  3. Check if a post is new or update on ... Check if a post is new or update on WordPress publish_post hook
    1
    <?php
    2
    /**
    3
     * Check if a post is new or an update. Currently, the hooks publish_${post_type} or save_post_${post_type}
    4
     * don't do this efficiently. The latter is problematic because if you need to perform a
    5
     * single action, like a database entry, it happens twice. Using the $update parameter is also
  4. WordPress - Make post meta column so... WordPress - Make post meta column sortable
    1
    <?php
    2
    /**
    3
     * Usage: cpt_make_sortable_column('post_type', array('coluna'));
    4
     *
    5
     * @param string $post_type
  5. WordPress class to generate post types WordPress class to generate post types
    1
    <?php
    2
    /**
    3
     * Class WPSSCpt
    4
     * Generate custom post types
    5
     */
  6. Generate WordPress dummy posts with ... Generate WordPress dummy posts with content and post thumbnail
    1
    <?php
    2
    
                  
    3
    /**
    4
     * Class WPSSDummy
    5
     *