disable annoying sound after changing volume control
Sorry, this entry is only available in Amerikan İngilizcesi. For the sake of viewer convenience, the content is shown below in the alternative language. ...
WYSIWYG editors proved big hit since day one. But is really What You See Is What You Get ? As of writing these first words, I noticed my built-in wysiwyg editor was missing <abb...
PowerFM Grammy 2016 törenini yayınlarken simültane çeviri yapmama kararı almış, ender rastlanan – belki de bir ilk- karar ve %100 destekliyorum. Nedenine gelince: Öncelikle v...
The task at hand was simple: taking a pdf and turning into a flip book. Just export the pages and put them in the flip book script right ? pretty simple. Mine was even more simple ...
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 ma...
Previously we have established that the fastest way to get an ID is using wpdb . So, simply to get a random post link use: function eo_get_a_rand_postlink() { global $wpdb; $rand_p...
So all you need is a post->ID whats the fastest way to get it ? Jump to conclusion or lets evaluate our options here: query_posts(), get_posts(),wp_query(), $wpdb As a rule of t...
SELECT CONCAT('ALTER TABLE `', TABLE_NAME,'` CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;') AS mySQL FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA= "myschema" AND TAB...
So all you need is simply 1 random post, 1 random post->ID or 1 post link, you dont need to go through all the hoops. (Update: added $wpdb function to tests) Jump to conclusion ...