HOW TO SHOW NUMBER OF VIEW (VIEW COUNT) IN WORDPRESS? [for wordpress developer]
HOW TO SHOW NUMBER OF VIEW (VIEW COUNT) IN WORDPRESS? [for wordpress developer]
Blog For Knowledge,Tech & Infotainment
HOW TO SHOW NUMBER OF VIEW (VIEW COUNT) IN WORDPRESS? [for wordpress developer]
This article gives idea about two types of date.THE FIRSTa) dateif you want to show todays date you can use this format echo “Today is ” . date(“Y/m/d”) The symbol hereY: full year (2020)y: short form of year (20)m: numerical form of month (7)M: Alphabetical form of Month (July)d: date (16)D: short form of day … Read moreDATE AND TIME IN WORDPRESS DEVELOPMENT
The easiest way to add the nav manu in the dashboard is by using “register_nav_menus()” function and hook in the functions.phpThe syntax is as follow: function menu_name(){“header” => “primary Menu”,“footer” => “Footer Menu”} add_action(“init”,”menu_name”); // in the above header and footer are the two menus that I am going to embade in my project. You … Read moreHOW TO REGISTER NAV MENU IN WORDPRESS?