ifrtest
123

as of 4.0, WP doesnt use define(‘WPLANG’, ‘en_GB’); in wp-config but uses $locale=’fr_FR’;
So I rebooted my server and everything seemed to be working, mysql, apache everything running but the websites werent loading. I could not instantly remember the cause because a machine reboot is not something you do on your server every day. The reason was I had varnish installed and it failed to start after reboot…
As you know, 3-4 letter domains are hard to come by these days, even with not so popular .tlds. “So”, I had a 3 letter a .so domain to use mainly as an url shortener. FYI: .so is the tld for Somalia, the source of inspiration for the dankest memes of the internetz. Apart from…
I ve searched low and high for this came across a lot of tips but none of them worked. Changing the “default beep” to (none) did nothing for me, it simply delegated to “exclamation” sound which was even worse. Best I could come up with was changing the “exclamation” sound to feed discovered 🙁 it…
If you are using “page-template”s you’ll have problems with pagination since pages are not meant to display posts and some people frown upon using page-templates for custom archive display, but it’s sometimes the simplest way. Anyway the solution is 1.) to nullify the global $wpquery 2.) adding ‘paged’ => $paged arg. before displaying your posts…
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=”‘…