V
V
Vlad Makarov2018-01-09 16:31:45
WordPress
Vlad Makarov, 2018-01-09 16:31:45

How to install tp-link t4uh wireless adapter driver on Linux mint 18.3 sylvia?

Please, just explain like a first grader! I just installed Linux today and have never used it before.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vladimir Brumer, 2019-10-28
@Zordig

we ban Vaska:

add_action('init','vab_commentdata_chek');function vab_commentdata_chek($commentdata){	
    if(isset($_POST['author'])&&$_POST['author']=='Вася'){wp_die(__('Ты отфильтрован!','VAB'));}
  return $commentdata;}

registered users from the database:
add_action('init','vab_commentdata_chek');function vab_commentdata_chek($commentdata){
$users=get_users();
foreach($users as $q){
  if(isset($_POST['author'])&&$_POST['author']==get_the_author_meta('display_name',$q->ID)){wp_die(__('Ты отфильтрован!','VAB'));}
}
  return $commentdata;}

registered users from the database and Zhorik:
add_action('init','vab_commentdata_chek');function vab_commentdata_chek($commentdata){
$users=get_users();
foreach($users as $q){
  if(isset($_POST['author'])&&$_POST['author']==get_the_author_meta('display_name',$q->ID)){wp_die(__('Ты отфильтрован!','VAB'));}
}
  if(isset($_POST['author'])&&$_POST['author']=='Жорик'){wp_die(__('Ты отфильтрован!','VAB'));}		
  return $commentdata;}

view array:
$users=get_users();
foreach($users as $q){
  echo get_the_author_meta('display_name',$q->ID).'<br />';
}

google get_users and get_the_author_meta if you have any questions

P
Pavel, 2018-01-09
@vladprog2

Instructions sempike.blogspot.ru/2015/09/linux-mint-ubuntu-comp... at the bottom of Update

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question