Coder Social home page Coder Social logo

kntnt-adminbar-sanitizer's Introduction

Kntnt Adminbar Sanitizer

WordPress mu-plugin that sanitizes admin bar from junk and provides enhancements.

Description

You can use this plugin to add or reomve items to the admin bar.

Out of the box, this plugns adds a toggle button, so you can switch between frontend and admin, and removes following buttons

  • WordPress (menu with About, WordPress.org, Documentation, Support and Feedback)
  • Site menu (menu with Visit site alternative Panel, Theme, Widgets and Menus)

You can add and delete items from the list of items to be removed by implementing the kntnt_admin_bar_sanitizer_remove_list-filter:

add_filter('kntnt_admin_bar_sanitizer_remove_list', function($remove_list) {
    $remove_list[] = 'customize';
    $remove_list[] = 'my-account';
    return $remove_list;
});

You can add and delete items from the list of items to be added on the frontend by implementing the kntnt_admin_bar_sanitizer_add_front_list-filter:

add_filter('kntnt_admin_bar_sanitizer_add_front_list', function($add_list) {
    $add_list['kntnt'] = [
        'title' => 'Kntnt',
        'link' => 'https://www.kntnt.com/',
        'icon' => '\f102',       // OPTIONAL
        'icon_top_margin' => 0,  // OPTIONAL
     ],
    return $add_list;
});

You can add and delete items from the list of items to be added on the backend by implementing the kntnt_admin_bar_sanitizer_add_admin_list-filter:

add_filter('kntnt_admin_bar_sanitizer_add_admin_list', function($add_list) {
    $add_list['kntnt'] = [
        'title' => 'Kntnt',
        'link' => 'https://www.kntnt.com/',
        'icon' => '\f102',       // OPTIONAL
        'icon_top_margin' => 0,  // OPTIONAL
    ],
  return $add_list;
});

kntnt-adminbar-sanitizer's People

Contributors

tbarregren avatar

Watchers

 avatar  avatar

Forkers

wprobot

kntnt-adminbar-sanitizer's Issues

Allow nested menu items

The code allows new menu items to be nested (see how it is used on Kntnt's site). But the implementation with filters don't take that into account. Fix this by adding a 'parent' key.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.