Skip to content
View mcascardi's full-sized avatar
🚙
🚙

Highlights

  • Pro

Organizations

@cascardimedia

Block or report mcascardi

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

Pinned Loading

  1. Fast AJAX handler for wp Fast AJAX handler for wp
    1
    <?php
    2
    /**
    3
     * Hello, this is a minimal ajax handler for WP.  
    4
     * Based off of: https://coderwall.com/p/of7y2q/faster-ajax-for-wordpress which didn't work for me out of the box.
    5
     * Note: replace tld with your own prefix.
  2. Wordpress wp-json API example using ... Wordpress wp-json API example using OOP
    1
    <?php
    2
    include_once 'news-api.class.php';
    3
    // Implementation Steps:
    4
    // Step 1: Call init() in your custom theme or custom plugin code.
    5
    $news_api = new News_API();
  3. Security configurations for WordPress Security configurations for WordPress
    1
    <?php
    2
    
                  
    3
    // Remove links for blog clients, shortlink, and generator info from header
    4
    remove_action('wp_head', 'rsd_link');
    5
    remove_action('wp_head', 'wlwmanifest_link');