Similar Posts
Do not create accounts with these names
ByeminoCommon names are priority targets for brute force attacks. Avoid creating email and account names including words listed below. The data has been collected from a vast number of attempts, chosen the most frequent ones, plus some random sampling. Ironically, pretty sure these keywords will only attract more spam, but I hope it helps someone….
Nasıl yani ?
Byeminoİnternette artık 3-4 karakterli alanadı bulmak imkansız gibi biliyorsunuz, yeni çıkan uzantılarda bile. Ben de bir tane 3 harfli almış bulundum “.so” uzantılı, HavaNasilOralarda.com adlı site adı çok uzun olduğu için hno.so almıştım URL kısaltma amaçlı. Saçma sapan 99$ yenileme ücretinden daha ilginç olan durum ise şu ki; domainin süresi bitmeden önce yenileyemiyorsunuz. Önce süresi…
This site is optimized with the Yoast WordPress
ByeminoIf you have a comment in your <head> that says <!– This site is optimized with the Yoast WordPress –> it’s not a big deal for the average user, but if you do not want to openly reveal that you are using WordPress, this is utterly annoying for you. I usually use my own functions…
add_meta_box not working
ByeminoMy metaboxes suddenly stopped working. If that’s the case for you, and you are clueless, try resetting $id for your meta_box
Notify user for post status change
Byemino<?php function notify_post_status( $post_id = NULL, $user = ” ) { if ( ! isset($_POST[“post_id”]) ) { $post_id = $_POST[“post_id”]; } else { return $post_id; } $post = get_post($post_id); $status = $post->post_status; $type = $post->post_type; $author_id = intval($post->post_author); $user = get_userdata( $author_id ); //ignore admin if( $author_id == 1 ) return; // Which statuses should…
Optimizing WordPress query for autocomplete search
ByeminoI was working on an autocomplete solution and I was thinking of ways to speed up the search. I will be providing a few examples with results below. Q1 is the default wordpress search with no parameters. Q2 removes the caches since they wont be really necessary. And Q3 is tailored for precision; ie: my…