ifrtest
123

Queries are only available after “wp” action hook, so ‘init’ is too early to check for it.
İ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…
So I wasn’t able to add new items to wordpress menu and found out that the reason is the POST limit but adding max_input_vars = 2000 did not solve the problem (default is 1000). If you have suhosin and cant add new menu items or save your menu, you have to add the below to your…
There are a few issues (things I dont like) about the bootstrap accordion: 1- The title is inline, so you have to click the text part to activate it 2- There is no indication if the item is collapsed or open 3- :hover underlining is obnoxious. To solve all these; simply add the below css:…
If you want to add name email or any additional fields in addition to password for protected posts, see the steps below: /****************** custom protected post form *****/ add_filter( ‘the_password_form’, ‘custom_password_form’ ); function custom_password_form() { global $post; $label = ‘pwbox-‘.( empty( $post->ID ) ? rand() : $post->ID ); $a = ‘<div class=”clearfix”><form id=”password_form” class=”protected-post-form” action=”‘…
to view: find /home/*/mail/*/*/cur -mtime +729 -type f -ls to delete: find /home/*/mail/*/*/cur -mtime +729 -type f -delete