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

Block or report Niq1982

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. digitoimistodude/air-light digitoimistodude/air-light Public

    💨 WordPress starter theme - designed to be minimal, ultra-lightweight (< 20 kB) and easy for all kinds of WordPress projects. 7+years/1000+hours of development and still updating daily! We prefer t…

    SCSS 892 137

  2. digitoimistodude/air-reactions digitoimistodude/air-reactions Public

    A developer-friendly WordPress-plugin for adding customizable reactions (likes, hearts, dislikes, shrugs or whatever you feel like) to your content.

    PHP 19 3

  3. digitoimistodude/air-notifications-legacy digitoimistodude/air-notifications-legacy Public

    PHP 2

  4. Social icons functionality for WordP... Social icons functionality for WordPress
    1
    <?php
    2
    $social_icons = [
    3
      'facebook' => [
    4
        'title' => 'Dude Facebook',
    5
        'url' => 'https://www.facebook.com/digitoimistodude/',
  5. Force reinstall everything with WP CLI Force reinstall everything with WP CLI
    1
    Use WP CLI to reinstall everything when there's a possibility that the site is hacked and could include some malicious code. Also be sure that you download/deploy fresh copies of plugins and themes that aren't hosted in the WordPress repositories
    2
    
                  
    3
    ### Download and install WP fresh core
    4
    
                  
    5
    Use `--skip-content` to not download default themes/plugins.
  6. Add focal point to WordPress feature... Add focal point to WordPress featured image with WP Smart Crop
    1
    <?php
    2
    // This requires the WP Smart Crop plugin
    3
    
                  
    4
    // Get the thumbnail ID
    5
    $thumbnail_id = get_post_thumbnail_id( get_the_ID() );