Skip to content
View atomtigerzoo's full-sized avatar
🤨
🤨
Block or Report

Block or report atomtigerzoo

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

    A skeleton boilerplate built with Eleventy and TailwindCSS.

    CSS 1

  2. wordpress-theme-init wordpress-theme-init Public

    Simple starter/init-theme for Wordpress development. Comes with browser-sync, gulp watchers for Post-CSS/ES6 and build scripts for the production-ready theme.

    JavaScript 1

  3. Wordpress: Disable Yoast SEO on Cust... Wordpress: Disable Yoast SEO on Custom Post Type
    1
    function my_remove_wp_seo_meta_box() {
    2
    	remove_meta_box('wpseo_meta', YOUR_POST_TYPE_NAME_HERE, 'normal');
    3
    }
    4
    add_action('add_meta_boxes', 'my_remove_wp_seo_meta_box', 100);
  4. Wordpress: responsive oembeds - yout... Wordpress: responsive oembeds - youtube, vimeo, images, etc
    1
    /*
    2
      Creates a container around embeds
    3
     */
    4
    function responsive_embed_wrapper($content) {
    5
      return '<figure class="oembed-wrap">' . $content . '</figure>';
  5. Wordpress: Hide the editor on define... Wordpress: Hide the editor on defined pages
    1
    /**
    2
     * Hide the main editor on specific pages
    3
     */
    4
    define('EDITOR_HIDE_PAGE_TITLES', json_encode(array()));
    5
    define('EDITOR_HIDE_PAGE_TEMPLATES', json_encode(array('template-cars.php')));