Coding

Custom Emoji to WordPress

Replace default smilies of WordPress, insert following code in functions.php file of current theme. // Replace default smilies of WordPress add_filter('smilies_src','fa_smilies_src',1,10); function fa_smilies_src ($img_src, $img, $siteurl){ $img = rtrim($img, "gif"); return get_bloginfo('template_directory') . '/smilies/' . $img . 'png'; } Download…

Config PostgreSQL and Laravel

Wiki PostgreSQL is a powerful, open source object-relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all…