Kisi-kisi Soal UTS dan UAS Elektronika Beserta Jawaban

SOAL A 1) Berikut ini yang termasuk komponen elektronika dengan jenis komponen pasif yaitu ....

Kisi-kisi Soal UTS dan UAS Sistem Terdistribusi Beserta Jawaban

SOAL A 1. Berikut ini yang merupakan karakteristik dari definisi sistem terdistribusi adalah ....

Remove Bios Password and Harddissk (HDD) Laptop

I think to remove the bios password on an average PC is already can, although without having to memorize the password. the system jumpers or removing battery bios. ever see a supervisor, admin, system, HDD, bios, setup password?

Memperbaiki Kick Starter Motor Matic

Motor Matic is a motor that is the easiest to use and most in our homeland. please note that the motor also takes care of very sensitive, just like a computer that also takes care of sensitive anyway.

Gejala Kerusakan Mesin Air Submersible Metabo

Mesin Air Submersible atau yang sering disebut kebanyakan orang (satelit) ini sangat bagus, dengan sistemnya yang canggih dan fleksible. tipe mesin yang berbasis kerja di dalam tanah dan hanya menggunakan satu pipa ini, sangat berguna untuk anda yang memiliki banyak lumpur atau air kuning setelah pengeboran.

Showing posts with label Wordpress. Show all posts
Showing posts with label Wordpress. Show all posts

29 January 2017

How to Disable or Hide WordPress Admin Bar

Disable Admin Bar for All Users

If you want to disable it for all users, then simply put use this code in your theme’s functions.php file or your theme in wp-content.

  show_admin_bar(false);

you can also create this

  add_filter('show_admin_bar', '__return_false');

Disable Admin Bar for All Users Except for Administrators

add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}


This code will stop the toolbar from displaying on the front-end of your site.
Share:

19 May 2016

Membuat CMS Wordpress menjadi WordPress Multisite Network

English
A WordPress multisite network Allows you to run and manage multiple WordPress sites from a single WordPress installation. Just like I could Dot Com makes Multisite from blog.sayabisa.com. Actually, at the time of installation can be directly checked multisite if the initial intention to create a website with WordPress multisite, but there were already make single and want to upgrade to multisite.
There are 2 options in making this multisite, namely:

blog.sayabisa.com = subdomains
sayabisa.com/blog = sub-directories
Immediately, step by step:
1. create additional wp_config.php
define ( 'WP_ALLOW_MULTISITE', true);

Share:

Blog Archive