Convert Digits To Roman Numbers in PHP Other Use this function to convert digits to roman numbers in php <?php function romanic_number($integer, $upcase = false) { … April 18, 2016 Read more
Hide admin bar in front end on a wordpress website Wordpress Please copy this code in functions.php file of your theme function hide_admin_bar_from_front_end(){ if (is_blog_admin()) { return true; } return false;}add_filter(… April 18, 2016 Read more